Inputs loaded in the data preparation program from data frames previously generated
name
: name of the data frame loaded (to be added by user)
data
: data loaded (optional attribute)
process
: process where input is loaded in the data preparation program (to be added by user)
f_add()
does nothing, just allows to keep track of the new data frame used as input
to be used when in a process, a new data frame is used and there is no need to return it
Input_df( name = 'MasterData', data = MasterData, process = 'Future_Forecast' )$f_add()
f_return()
simply returns the data of the object
By default : return(data)
MasterData2 <- MasterData
is now replaced by
MasterData2 <- Input_df( name = 'MasterData', data = MasterData, process = 'Future_Forecast' )$f_return()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.