Learn R Programming

RJafroc (version 1.3.2)

DfSaveDataFile: Save ROC data file in a different format

Description

Save ROC data file in a different format so it can be analyzed with alternate software

Usage

DfSaveDataFile(
  dataset,
  fileName,
  format = "JAFROC",
  dataDescription = paste0(deparse(substitute(dataset)), " Data File")
)

Arguments

dataset

The dataset to be saved in the specified format, see RJafroc-package.

fileName

The file name of the output data file. The extension of the data file must match the corresponding format, see RJafroc-package

format

The format of the data file, which can be "JAFROC", "MRMC" or "iMRMC", see RJafroc-package.

dataDescription

An optional string variable describing the data file, the default value is the variable name of dataset The description appears on the first line of *.lrc or *imrmc data file. This parameter is not used when saving dataset in other formats.

Examples

Run this code
# NOT RUN {
DfSaveDataFile(dataset = dataset05, 
   fileName = "rocData2.xlsx", format = "JAFROC")
DfSaveDataFile(dataset = dataset02, 
   fileName = "rocData2.csv", format = "MRMC")
DfSaveDataFile(dataset = dataset02, 
   fileName = "rocData2.lrc", format = "MRMC", 
   dataDescription = "ExampleROCdata1")
DfSaveDataFile(dataset = dataset02, 
   fileName = "rocData2.txt", format = "MRMC", 
   dataDescription = "ExampleROCdata2")
DfSaveDataFile(dataset = dataset02, 
   fileName = "dataset05.imrmc", format = "iMRMC", 
   dataDescription = "ExampleROCdata3") 
# }
# NOT RUN {
 
# }

Run the code above in your browser using DataLab