-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
Description
DF = data.frame(a = 1:10)
DF$b = as.list(DF$a)
arrow::write_parquet(DF, 'test.parquet')
# Error in Table__from_dots(dots, schema) : cannot infer type from dataThis appears to be supported naturally already in Python:
import pandas as pd
pd.DataFrame({'a': [1, 2, 3], 'b': [[1, 2], [3, 4], [5, 6]]}).to_parquet('test.parquet')Reporter: Michael Chirico
Assignee: Francois Saint-Jacques / @fsaintjacques
Related issues:
- [R] Refactor R <-> Array conversion (relates to)
PRs and other links:
Note: This issue was originally created as ARROW-7662. Please see the migration documentation for further details.