qda | R Documentation |
Quadratic discriminant analysis.
qda(x, ...)
## S3 method for class 'formula'
qda(formula, data, ..., subset, na.action)
## Default S3 method:
qda(x, grouping, prior = proportions,
method, CV = FALSE, nu, ...)
## S3 method for class 'data.frame'
qda(x, ...)
## S3 method for class 'matrix'
qda(x, grouping, ..., subset, na.action)
formula |
A formula of the form |
data |
An optional data frame, list or environment from which variables
specified in |
x |
(required if no formula is given as the principal argument.) a matrix or data frame or Matrix containing the explanatory variables. |
grouping |
(required if no formula principal argument is given.) a factor specifying the class for each observation. |
prior |
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. |
subset |
An index vector specifying the cases to be used in the training sample. (NOTE: If given, this argument must be named.) |
na.action |
A function to specify the action to be taken if |
method |
|
CV |
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. |
nu |
degrees of freedom for |
... |
arguments passed to or from other methods. |
Uses a QR decomposition which will give an error message if the within-group variance is singular for any group.
an object of class "qda"
containing the following components:
prior |
the prior probabilities used. |
means |
the group means. |
scaling |
for each group |
ldet |
a vector of half log determinants of the dispersion matrix. |
lev |
the levels of the grouping factor. |
terms |
(if formula is a formula) an object of mode expression and class term summarizing the formula. |
call |
the (matched) function call. |
unless CV=TRUE
, when the return value is a list with components:
class |
The MAP classification (a factor) |
posterior |
posterior probabilities for the classes |
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.
predict.qda
, lda
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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.