Description Usage Arguments Value Author(s) Examples
Update a COBRAData
object generated by a previous version of the
package to the latest version.
1 | update_cobradata(object, quiet = FALSE)
|
object |
A |
quiet |
Set to TRUE to disable messages listing the modifications that are applied to the object |
An updated COBRAData
object
Charlotte Soneson
1 2 3 4 5 6 7 8 9 10 | ## Generate COBRAData object
set.seed(123)
pval <- data.frame(m1 = runif(100), m2 = runif(100),
row.names = paste0("F", 1:100))
truth <- data.frame(status = round(runif(100)),
row.names = paste0("F", 1:100))
cobradata <- COBRAData(pval = pval, truth = truth)
## Update object if needed
cobradata <- update_cobradata(cobradata)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.