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
I am using the Apache Arrow C library to read parquet files (https://github.com/apache/arrow/blob/master/c_glib/parquet-glib/).
Based on the columns of the parquet file I want to create a DataFrame (schema not known at compile time).
Is this is possible? I only see examples of creating the DataFrame with schema known at compile time, like
DataFrame!(int, 2, double, 1) df;
The text was updated successfully, but these errors were encountered:
I am using the Apache Arrow C library to read parquet files (https://github.com/apache/arrow/blob/master/c_glib/parquet-glib/).
Based on the columns of the parquet file I want to create a DataFrame (schema not known at compile time).
Is this is possible? I only see examples of creating the DataFrame with schema known at compile time, like
The text was updated successfully, but these errors were encountered: