permutations {xnet} | R Documentation |
The functions described here are convenience functions to get
information out of a permtest
object.
permutations(x)
## S4 method for signature 'permtest'
x[i]
x |
a |
i |
either a numeric vector, a logical vector or a character vector with the elements that need extraction. |
the requested values
loss
to extract the original loss value.
data(drugtarget)
mod <- tskrr(drugTargetInteraction, targetSim, drugSim)
ptest <- permtest(mod, fun = loss_auc)
loss(ptest)
ptest[c(2,3)]
permutations(ptest)