Quadratic discriminant analysis.
qda(x, …)# S3 method for formula
qda(formula, data, …, subset, na.action)
# S3 method for default
qda(x, grouping, prior = proportions,
method, CV = FALSE, nu, …)
# S3 method for data.frame
qda(x, …)
# S3 method for matrix
qda(x, grouping, …, subset, na.action)
A formula of the form groups ~ x1 + x2 + …
That is, the
response is the grouping factor and the right hand side specifies
the (non-factor) discriminators.
Data frame from which variables specified in formula
are
preferentially to be taken.
(required if no formula is given as the principal argument.) a matrix or data frame or Matrix containing the explanatory variables.
(required if no formula principal argument is given.) a factor specifying the class for each observation.
the prior probabilities of class membership. If unspecified, the class proportions for the training set are used. If specified, the probabilities should be specified in the order of the factor levels.
An index vector specifying the cases to be used in the training sample. (NOTE: If given, this argument must be named.)
A function to specify the action to be taken if NA
s are found.
The default action is for the procedure to fail. An alternative is
na.omit, which leads to rejection of cases with missing values on
any required variable. (NOTE: If given, this argument must be named.)
"moment"
for standard estimators of the mean and variance,
"mle"
for MLEs, "mve"
to use cov.mve
, or "t"
for robust
estimates based on a t distribution.
If true, returns results (classes and posterior probabilities) for leave-out-out cross-validation. Note that if the prior is estimated, the proportions in the whole dataset are used.
degrees of freedom for method = "t"
.
arguments passed to or from other methods.
an object of class "qda"
containing the following components:
the prior probabilities used.
the group means.
for each group i
, scaling[,,i]
is an array which transforms observations
so that within-groups covariance matrix is spherical.
a vector of half log determinants of the dispersion matrix.
the levels of the grouping factor.
(if formula is a formula) an object of mode expression and class term summarizing the formula.
the (matched) function call.
unless CV=TRUE, when the return value is a list with components:
The MAP classification (a factor)
posterior probabilities for the classes
Uses a QR decomposition which will give an error message if the within-group variance is singular for any group.
Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. Fourth edition. Springer.
Ripley, B. D. (1996) Pattern Recognition and Neural Networks. Cambridge University Press.
# NOT RUN {
tr <- sample(1:50, 25)
train <- rbind(iris3[tr,,1], iris3[tr,,2], iris3[tr,,3])
test <- rbind(iris3[-tr,,1], iris3[-tr,,2], iris3[-tr,,3])
cl <- factor(c(rep("s",25), rep("c",25), rep("v",25)))
z <- qda(train, cl)
predict(z,test)$class
# }
Run the code above in your browser using DataLab