Closed isVoid closed 2 years ago
This issue has been marked stale due to no recent activity in the past 30d. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. This issue will be marked rotten if there is no activity in the next 60d.
This issue has been labeled inactive-90d
due to no recent activity in the past 90 days. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed.
change it to pandas dataframe ,and then >>cudf.from_pandas(df) and then transpose it ...it will work
This has been implemented. Closing.
import cudf
gdf = cudf.DataFrame({'a': ['a', 'b', 'c']})
print(gdf)
print(gdf.T)
a
0 a
1 b
2 c
0 1 2
a a b c
Is your feature request related to a problem? Please describe. In implementing #6483 , we realized there maybe a need to implement string column transpose to support future implementation of dataframe aggregations that contains string column. Currently:
Additional context Output of
print_env.sh
Click here to see environment details