- Joined
- 6/4/22
- Messages
- 40
- Points
- 118
Is there an existing C++ library that can achieve the similar call-by-name functionalities as Python Pandas' DataFrame?
The particular functionality I want to achieve from this data structure is following:
I am able create a table of data, with column names and row indices. And then, I can call a certain cell's data like: table['ColName'][RowIndex].
Example:
table:
Name Sex Age
0 Tom M 20
1 Mary F 23
2 Jerry M 19
Then I can get:
table['Name'][1] = 'Mary'
table['Age'][2] = 19.
Thank you.
The particular functionality I want to achieve from this data structure is following:
I am able create a table of data, with column names and row indices. And then, I can call a certain cell's data like: table['ColName'][RowIndex].
Example:
table:
Name Sex Age
0 Tom M 20
1 Mary F 23
2 Jerry M 19
Then I can get:
table['Name'][1] = 'Mary'
table['Age'][2] = 19.
Thank you.