OutputReport(fileName, format, delimiter = ",", dataset,
dataDscrpt = deparse(substitute(dataset)), reportFile, method = "DBMH",
fom = "wJAFROC", alpha = 0.05, covEstMethod = "Jackknife",
nBoots = 200, showWarnings = TRUE)
fileName
:
see ReadDataFile and "Details".dataset
, see "Details".fileName
or dataDscrpt
followed by the underscore
separated concatenation of method
and fom
as the output repoORH
or DBMH
.logical
variable: if TRUE
, a warning will be issued if the report file already exists and the program
will wait until the user inputs "y" or "n" to determine whether to overwrite the existing file. If FALSE
, the exfileName
and format
or dataset
and dataDscrpt
must be specified. If both are
specified, the data file fileName
is analyzed and the dataset object dataset
is ignored.## deliberately overriding the default for showWarnings, so as to not confuse
## timing tests run by CRAN; you should not need to do this
OutputReport(dataset = rocData, method = "DBMH", fom = "Wilcoxon",
dataDscrpt = "MyROCData", showWarnings = FALSE)
OutputReport(dataset = rocData, method = "DBMH", fom = "Wilcoxon",
reportFile = "MyROCDataAnalysis.txt", showWarnings = FALSE)
OutputReport(dataset = rocData, method = "ORH", fom = "Wilcoxon", showWarnings = FALSE)
OutputReport(dataset = frocData, method = "DBMH", fom = "Wilcoxon") # ERROR!
OutputReport(dataset = frocData, method = "ORH") # default fom is wJAFROC
OutputReport(dataset = frocData, method = "DBMH", fom = "HrAuc")
OutputReport(dataset = roiData, method = "ORH", fom = "ROI")
Run the code above in your browser using DataLab