Re: Data structures in Nim equivalent to dataframe in R

2016-08-15 Thread darshanmeel
Thanks for reply. I want to use bit complicated stats. I want to include all types of columns not just floats. Anyway, I have further question. I was thinking that I will create a type and then I will use the Seq[type] to store the data. It is working fine. But I have another question. How can

Re: Data structures in Nim equivalent to dataframe in R

2016-08-14 Thread jlp765
What is basic stats? Have you looked at [the Stats module](http://forum.nim-lang.org///nim-lang.org/docs/stats.html) ? (first 4 modes, correlation of two series, etc) Nim does not (currently) have Series/DataFrame/GroupBy that pandas/numpy python libraries provide (and I don't know R). Nim's `s

Data structures in Nim equivalent to dataframe in R

2016-08-14 Thread darshanmeel
Hi, I would like to know what is best way to create equivalent of dataframe in R or python. I would like to do basic stats using the dataframes but I want to try in something similar in Nim. Thanks