-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathREADME.Rmd
38 lines (27 loc) · 1.54 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
output:
md_document:
variant: markdown_github
---
# rrr
[![Build Status](https://travis-ci.org/chrisaddy/rrr.svg?branch=master)](https://travis-ci.org/chrisaddy/rrr)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/rrr)](http://cran.r-project.org/package=rrr)
[![Coverage Status](https://img.shields.io/codecov/c/github/chrisaddy/rrr/master.svg)](https://codecov.io/github/chrisaddy/rrr?branch=master)
R package for reduced-rank regression.
### Install latest release from CRAN
```{r eval = FALSE}
install.packages("rrr")
```
### Install development version from github
```{r eval = FALSE}
devtools::install_github("chrisaddy/rrr")
```
Please send any issues, with minimally-reproducible code, and any feature requests or suggestions to the package [github issues portal](https://github.com/chrisaddy/rrr/issues).
The rrr package provides four categories of reduced-rank regression functions:
* reduced-rank regression
* principal component analysis
* canonical variate analysis
* multiclass linear discriminant analysis
The framework of this package was based on Alan Izenman's book *Modern Multivariate Statistical Techniques: Regression, Classification, and Manifold Learning* and the Fall 2016 course -- taught by him and based on the text -- at Temple University.
Special thanks to Dr. Izenman -- his insights were invaluable in keeping the focus of this package on reduced-rank regression.
The package author would also like to acknowledge the work of Charles Miller who authored the original reduced-rank regression code for the text.