plotMetrics | R Documentation |
Plot random forest model performance metrics
plotMetrics(x, response = "class")
## S4 method for signature 'RandomForest'
plotMetrics(x)
## S4 method for signature 'list'
plotMetrics(x)
x |
S4 object of class |
response |
response results to plot |
library(metaboData)
x <- analysisData(abr1$neg[,200:300],abr1$fact) %>%
keepClasses(cls = 'day',classes = c('H','1','5')) %>%
occupancyMaximum(cls = 'day') %>%
transformTICnorm()
rf <- randomForest(x,cls = 'day',binary = TRUE)
plotMetrics(rf,response = 'day')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.