hosseinmoein / DataFrame

C++ DataFrame for statistical, Financial, and ML analysis -- in modern C++ using native types and contiguous memory storage
https://hosseinmoein.github.io/DataFrame/
BSD 3-Clause "New" or "Revised" License
2.54k stars 313 forks source link

Contribution #131

Closed adeolaibigbemi closed 3 years ago

adeolaibigbemi commented 3 years ago

I want to contribute to this project. Kindly reach out to me.

hosseinmoein commented 3 years ago

Read #130 issue

hosseinmoein commented 3 years ago

If you have noticed in most DataFrame member functions, the programmer must specify the column type(s). In some cases, this is not necessary. We could deduce the column type(s) from other parameters passed to the function. An example is the load_column() member function.

As the first contribution, why don't you change load_column() not to require column type and become a non-template member function. You can figure out the type of the column from the type of the data passed to it