MGSDA (Multi-Group Sparse Discriminant Analysis) is an R package that implements methods described in
The package is available from CRAN.
To install from Github:
devtools::install_github("irinagain/MGSDApackage")
The main functions are cv.dLDA
(cross-validation),
dLDA
(fitting for specified value of tuning parameter) and
classifyV
(classification). Each function has a
documentation with a simple example which can be accessed using standard
? commands in R (i.e. ?cv.dLDA
).
Please feel free to contact me at irinag [at] stat [dot] tamu [dot] edu if you have any questions or experience problems with the package.
library(MGSDA)
### Example 1
# generate training data
<- 10
n <- 100
p <- 3
G <- rep(1:G, each = n)
ytrain set.seed(1)
<- matrix(rnorm(p * n * G), n * G, p)
xtrain
# find matrix of canonical vectors V
<- dLDA(xtrain, ytrain, lambda = 0.1)
V sum(rowSums(V) != 0)
# generate test data
<- 20
m set.seed(3)
<- matrix(rnorm(p * m), m, p)
xtest
# perform classification
<- classifyV(xtrain, ytrain, xtest, V) ytest