pandas
DataFrame or Series, you can import it into Terality with the from_pandas
method. You can also convert to Terality DataFrame to a pandas
DataFrame with to_pandas
.from_pandas
. pd.read_parquet
and then using te.Dataframe.from_pandas
is less performant than directly reading the file with Terality with for examplete.read_parquet
. Prefer reading directly from a file when possible.