bind_cv {metan} | R Documentation |
Bind cross-validation objects
Description
Helper function that combines objects of class cv_ammi
,
cv_ammif
or cv_blup
. It is useful when looking for a boxplot
containing the RMSPD values of those cross-validation procedures.
Usage
bind_cv(..., bind = "boot", sort = TRUE)
Arguments
... |
Input objects of class |
bind |
What data should be used? To plot the RMSPD, use 'boot'
(default). Use |
sort |
Used to sort the RMSPD mean in ascending order. |
Value
An object of class cv_ammif
. The results will depend on the
argument bind
. If bind = 'boot'
then the RMSPD of all models
in ...
will be bind to a unique data frame. If bind = 'means'
then the RMSPD mean of all models in ...
will be bind to an unique
data frame.
Author(s)
Tiago Olivoto tiagoolivoto@gmail.com
Examples
library(metan)
# Two examples with only 5 resampling procedures
AMMI <- cv_ammi(data_ge,
resp = GY,
gen = GEN,
env = ENV,
rep = REP,
nboot = 5)
BLUP <- cv_blup(data_ge,
resp = GY,
gen = GEN,
env = ENV,
rep = REP,
nboot = 5)
bind_data <- bind_cv(AMMI, BLUP)
plot(bind_data)
print(bind_cv(AMMI, BLUP, bind = 'means'))
[Package metan version 1.18.0 Index]