Extracts data from metric graphs to be used by 'INLA' and 'inlabru'.
graph_data_rspde(
graph_rspde,
name = "field",
repl = NULL,
repl_col = NULL,
group = NULL,
group_col = NULL,
only_pred = FALSE,
time = NULL,
bru = FALSE,
tibble = FALSE,
drop_na = FALSE,
drop_all_na = TRUE
)
An 'INLA' and 'inlabru' friendly list with the data.
An inla_metric_graph_spde
or inla_rspde_spacetime
object built with the
rspde.metric_graph()
or rspde.spacetime()
function.
A character string with the base name of the effect.
Which replicates? If there is no replicates, one
can set repl
to NULL
. If one wants all replicates,
then one sets to repl
to .all
.
Which "column" of the data contains the replicate variable?
Which groups? If there is no groups, one
can set group
to NULL
. If one wants all groups,
then one sets to group
to .all
.
Which "column" of the data contains the group variable?
Should only return the data.frame
to the prediction data?
Column containing times for space time models. Not needed when using inlabru. Only for INLA implementation of space time model.
Should the data be processed for inlabru
?
Should the data be returned as a tidyr::tibble
?
Should the rows with at least one NA for one of the columns be removed? DEFAULT is FALSE
. This option is turned to FALSE
if only_pred
is TRUE
.
Should the rows with all variables being NA be removed? DEFAULT is TRUE
. This option is turned to FALSE
if only_pred
is TRUE
.