You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we require users to proxy through arrow APIs to create a dataset from a DataFrame or Parquet file.
i.e.
importpyarrowaspa# Import a pandas DataFrame to Lancetbl=pa.Table.from_pandas(my_dataframe)
lance.write_dataset(tbl, '/tmp/my_dataframe.lance')
# Import a Parquet file to Lanceparquet_dataset=ds.dataset('/tmp/hello.parquet')
lance.write_dataset(parquet_dataset, '/tmp/hello.lance')
It's preferred to hide this away and make it as simple as possible
The text was updated successfully, but these errors were encountered:
Currently we require users to proxy through arrow APIs to create a dataset from a DataFrame or Parquet file.
i.e.
It's preferred to hide this away and make it as simple as possible
The text was updated successfully, but these errors were encountered: