gridAUCVC4Matrices function

gridAUCVC4Matrices

gridAUCVC4Matrices

Please refer to the file /inst/doc/readme.pdf.

gridAUCVC4Matrices(..., nonzeroRatios = NULL, cvNorm = TRUE, cvResolution = 0.005)

Arguments

  • ...: Please refer to the file /inst/doc/readme.pdf.
  • nonzeroRatios: 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.

Examples

##---- 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 (..., nonzeroRatios = NULL, cvNorm = TRUE, cvResolution = 0.005) { if (is.null(nonzeroRatios)) { stop("Please provide nonzeroRatios!") } matrices <- list(...) numMethod <- length(matrices) grid_result <- NULL for (i in nonzeroRatios) { result.sorted <- getAUCVCs(..., nonzeroRatio = i, cvNorm = cvNorm, cvResolution = cvResolution) grid_record <- c(i, result.sorted) names(grid_record)[1] <- "NonzeroRatio" grid_result <- c(grid_result, names(grid_record), grid_record) } grid_result2 <- matrix(grid_result, ncol = numMethod + 1, byrow = TRUE) return(grid_result2) }
  • Maintainer: Shan Gao
  • License: Artistic-2.0
  • Last published: 2024-03-20

Useful links