[FEA] Support for operations on dataframe with list, dicts, numbers, and strings as datatype #2291
Labels
feature request
New feature or request
libcudf
Affects libcudf (C++/CUDA) code.
Python
Affects Python cuDF API.
Is your feature request related to a problem? Please describe.
I wish I could have lists, arrays, dicts, ... in my cudf dataframe.
Describe the solution you'd like
I want cudf let me have lists and arrays and also strings in my cudf and also let me apply functions (apply_row for example) on them. currently apply_row only works with numerical values.
Describe alternatives you've considered
I had to create a much bigger cudf dataframe that contains the flattened version of arrays, tuples, and lists. This is done in Pandas and could be time consuming.
Additional context
code snippet in pandas
test = pd.DataFrame({'key1': ['A', 'B', 'B', 'D'],
'key2': [['E'], ('B'), {'B':0}, 0.123]})
test
0 A [E]
1 B B
2 B {'B': 0}
3 D 0.123
The text was updated successfully, but these errors were encountered: