2025-04-05 11:57:11
(modified)
Implementation_of_Dataframes_in_C++
Rebuild of Evangelion
Introducing my
dataframe
implementation in C++
repo
zip
- Read a
csv
and import columns to std::vectors
os the corresponding type deducted via a semantical analysis (std::string, char, bool, int, unsigned int, double
)
- Allow to write the dataframe to a csv with a chosen column delimiter
- Handle N/As
- Allow to copy to another dataframe selecting rows and columns from the copied dataframe
- Alow to copy a column as a
std::vector
of the corresponding type
- Allow to copy a set of columns as
std::vector
of the corresponding type
- ....