corr: 2nd momments of sparse matrices

Description Usage Arguments Value Author(s) See Also Examples

View source: R/dtm.R

Description

Correlation and deviation in sparse matrices.

Usage

1
2
corr(x, y)
sdev(x)

Arguments

x

A dgCMatrix or matrix of counts.

y

A matrix with nrow(y)=nrow(x).

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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# 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]]
 
 

textir documentation built on May 2, 2019, 2:46 p.m.