View source: R/combine_extract.R
| c.reliabilitydiag | R Documentation | 
Combine two or more 'reliabilitydiag' objects that are based on the
same observations. Other objects are coerced by as.reliabilitydiag
before combination.
## S3 method for class 'reliabilitydiag' c( ..., tol = sqrt(.Machine$double.eps), xtype = NULL, xvalues = NULL, region.level = 0.9, region.method = NULL, region.position = "diagonal", n.boot = 100 )
| ... | objects to be concatenated. | 
| tol | accuracy when comparing  | 
| xtype | a string specifying whether the prediction values should be
treated as  | 
| xvalues | a numeric vector of possible prediction values;
values in  | 
| region.level | a value in (0, 1) specifying the level at which consistency or confidence regions are calculated. | 
| region.method | a string specifying whether  | 
| region.position | a string specifying whether consistency regions
around the  | 
| n.boot | the number of bootstrap samples when
 | 
an object inheriting from the class 'reliabilitydiag'.
as.reliabilitydiag, [.reliabilitydiag.
data("precip_Niamey_2016", package = "reliabilitydiag")
X <- precip_Niamey_2016[c("EMOS", "ENS")]
Y <- precip_Niamey_2016$obs
r0 <- reliabilitydiag0(Y)
r1 <- c(r0, X, EPC = precip_Niamey_2016$EPC, region.level = NA)
r1
c(r1, reliabilitydiag(Logistic = precip_Niamey_2016$Logistic, y = Y))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.