Description Usage Arguments See Also Examples
Plot the results of a privateEC workflow for a quick plot/review with base graphics.
| 1 | plotRunResults(pec.result = NULL)
 | 
| pec.result | A list representing the results returned from a privateEC algorithm run. | 
Other workflows: 
compileAndSaveAllResults(),
paperRealWorkflow(),
paperSimWorkflow()
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | data(rsfMRIcorrMDD)
# ~100 variables for a test
data.width <- ncol(rsfMRIcorrMDD)
real.data.sets <- splitDataset(all.data = rsfMRIcorrMDD[, (data.width - 101):data.width],
                               pct.train = 0.5,
                               pct.holdout = 0.5,
                               pct.validation = 0,
                               label = "class")
real.result <- privateEC(train.ds = real.data.sets$train,
                         holdout.ds = real.data.sets$holdout,
                         validation.ds = NULL,
                         label = "class",
                         is.simulated = FALSE,
                         update.freq = 5,
                         verbose = FALSE)
plotRunResults(real.result)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.