permutationScoreModel | R Documentation |
Treat permutation re-samples as similar to bootstrap replications.
permutationScoreModel(
modelValues,
yValues,
scoreFn,
...,
na.rm = FALSE,
returnScores = FALSE,
nRep = 100,
parallelCluster = NULL
)
modelValues |
numeric array of predictions. |
yValues |
numeric/logical array of outcomes, dependent, or truth values |
scoreFn |
function with signature scoreFn(modelValues,yValues) returning scalar numeric score. |
... |
not used, forces later arguments to be bound by name |
na.rm |
logical, if TRUE remove NA values |
returnScores |
logical if TRUE return detailed permutedScores |
nRep |
integer number of repititions to perform |
parallelCluster |
optional snow-style parallel cluster. |
summaries
set.seed(25325)
y <- 1:5
m <- c(1,1,2,2,2)
cor.test(m,y,alternative='greater')
f <- function(modelValues,yValues) cor(modelValues,yValues)
permutationScoreModel(m,y,f)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.