Notebook.create_output_table
Notebook.create_output_table(data, *, name=None, append=False, geography_variables=None) → Table
Parameters:
Returns
Examples
df = get_dataframe_somehow()
notebook = redivis.current_notebook()
# Create an output table on the current notebook
# Optional parameter, append (default False), determines whether the output appends to
# or replaces the output table.
notebook.create_output_table(df, append=False)
# Can also pass a path to a parquet file
notebook.create_output_table("path/to/file.parquet")Was this helpful?

