corr {textir} | R Documentation |
2nd momments of sparse matrices
Description
Correlation and deviation in sparse matrices.
Usage
corr(x, y)
sdev(x)
Arguments
x |
A |
y |
A |
Value
corr
returns the ncol(x)
by ncol(y)
matrix of correlation between x and y, and sdev
returns the column standard deviations.
Author(s)
Matt Taddy taddy@chicagobooth.edu
See Also
pls, congress109
Examples
# some congress examples
data(congress109)
r <- corr(congress109Counts, congress109Ideology$repshare)
## 20 terms for Democrats
sort(r[,1])[1:20]
## 20 terms for Republicans
sort(r[,1], decreasing=TRUE)[1:20]
## 20 high variance terms
colnames(congress109Counts)[
order(-sdev(congress109Counts))[1:20]]
[Package textir version 2.0-5 Index]