block_cv | R Documentation |
This function uses block cross-validation to evaluate a model. The data is split into blocks, and the model is fit on all but one block and evaluated on the remaining block. This process is repeated for each block, and the mean squared error is calculated for each model.
block_cv(
data,
dayvar = NULL,
model,
block = 10,
lowerbound = -Inf,
upperbound = Inf,
detail = FALSE,
metric = "MSE"
)
data |
A data frame. |
dayvar |
A character string. The name of the variable that represents the day. This is required because this function use dayvar to specify the time point before the test block should not be used to predict the time point after the test block. If dayvar is not specified, in the original dataset, then please add one constant variable as dayvar, and specify it both here and in the function passed to |
model |
A function. The model to be evaluated. The function should take a data frame as its first argument and return a |
block |
An integer. The number of blocks to use in the cross-validation. The default is 10. |
lowerbound |
A numeric value or a vector with the same length as the number of variables that specifies the lower bound of the predicted values. If the predicted value is less than this value, it will be replaced by this value. The default value is -Inf. |
upperbound |
A numeric value or a vector with the same length as the number of variables that specifies the upper bound of the predicted values. If the predicted value is greater than this value, it will be replaced by this value. The default value is Inf. |
detail |
A logical. If |
metric |
A character vector. The metric to be used to evaluate the model. The default is "MSE", which calculates the mean squared error. The other option is "MAE", which calculates the mean absolute error. Only effective when |
Depending on detail
. If FALSE
, it returns a list of mean squared errors for each model. If TRUE
, it returns a list with the mean squared errors for each model, the true data, and the predictions for each model.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.