plot.accest | R Documentation |
Plot accuracy rate of each iteration.
## S3 method for class 'accest'
plot(x, main = NULL, xlab = NULL, ylab = NULL, ...)
x |
An object of class |
main |
An overall title for the plot. |
xlab |
A title for the x axis. |
ylab |
A title for the y axis. |
... |
Additional arguments to the plot. |
This function is a method for the generic function plot()
for class
accest
. It plots the accuracy rate against the index of iterations.
Returns plot of class accest
.
Wanchang Lin
accest
# Iris data
data(iris)
# Stratified cross-validation of PCALDA for Iris data
pars <- valipars(sampling="cv", niter=10, nreps=10, strat=TRUE)
acc <- accest(Species~., data = iris, method = "pcalda", pars = pars)
acc
summary(acc)
plot(acc)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.