bind_cv | R Documentation |
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.
bind_cv(..., bind = "boot", sort = TRUE)
... |
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. |
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.
Tiago Olivoto tiagoolivoto@gmail.com
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'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.