Description Usage Arguments Details Value Examples
View source: R/save.file.summary.R
This functions allow to save the information on a file.
1 | save.file.summary(result, name, app = TRUE, mod1, mod2)
|
result |
List of statistical measures obtaind throught roc.curves.boot |
name |
File name |
app |
Indicates if the user wants to append information on the same file |
mod1 |
Name of the column of dataframe that represents the first modality |
mod2 |
Name of the column of dataframe that represents the second modality |
The user don't need to fill the app parameter, because by default it was set to TRUE. This parameter allow the user to choose if he wants the results of differents performances in the same file, or each time that he starts a new performance the file will be new.
This functions saves on the file with name name the performance parameters of the test.
1 2 3 4 5 | # If the user wants to append the results
save.file.summary(results, nameE, mod1=moda1, mod2=moda2)
# If the user does not want to append the results
save.file.summary(results, nameE, app=FALSE, moda1, moda2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.