View source: R/evaluateMetrics.R
getAUCVC | R Documentation |
Please refer to the file /inst/doc/readme.pdf.
getAUCVC(data, nonzeroRatio = NULL, cvNorm = TRUE, cvResolution = 0.005)
data |
Please refer to the file /inst/doc/readme.pdf. |
nonzeroRatio |
Please refer to the file /inst/doc/readme.pdf. |
cvNorm |
Please refer to the file /inst/doc/readme.pdf. |
cvResolution |
Please refer to the file /inst/doc/readme.pdf. |
##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (data, nonzeroRatio = NULL, cvNorm = TRUE, cvResolution = 0.005)
{
nozeroIndex <- filteredZero(data, nonzeroRatio = nonzeroRatio)
dataUse2CV <- data[nozeroIndex, ]
cv.result <- getCV(dataUse2CV, cvNorm = cvNorm)
CV2AUCVC(cv.result, cvResolution = cvResolution)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.