Takes the output of gp_opts() and converts it into a list understood by stan.
create_gp_data(gp = gp_opts(), data)
Arguments
gp: A list of options as generated by gp_opts() to define the Gaussian process. Defaults to gp_opts(). Set to NULL to disable the Gaussian process.
data: A list containing the following numeric values: t, seeding_time, horizon.
Returns
A list of settings defining the Gaussian process
Examples
## Not run:# define input data requireddata <- list( t =30, seeding_time =7, horizon =7)# default gaussian process datacreate_gp_data(data = data)# settings when no gaussian process is desiredcreate_gp_data(NULL, data)# custom lengthscalecreate_gp_data(gp_opts(ls_mean =14), data)## End(Not run)