Notebook
class Notebook
Constructors
Examples
username <- "imathews"
workflow_name <- "example_workflow_climate_analysis:x7kh"
notebook_name <- "visualize_precipitation_trends:2f2v"
notebook <- redivis$notebook(f"{username}.{workflow_name}.{notebook_name}")
notebook$run()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 or csv
notebook$create_output_table("path/to/file.parquet")Attributes
Methods
Was this helpful?

