redivis::current_notebook

redivis::current_notebook() Notebook

Returns a reference to the current notebook. Can only be called from within a Redivis notebook. The current use case for this method is to generate an output table from the notebook (see example).

Returns:

Notebook

Examples

df = get_dataframe_somehow()

notebook <- redivis::current_notebook()
notebook$create_output_table(df) # create an output table on the current notebook

Last updated