Pearson’S Correlation Method In R
2
0
Entering edit mode
10.2 years ago
sebabiokr ▴ 10

Dear Biostar,

I would like to perform Pearson’s correlation of OTUs taxa against metabolomics data.

i have OTUs taxa abundance and metabolomics data for each samples.

Is there any method or tutorials?

Thank you

Seba

r heatmap • 4.3k views
ADD COMMENT
2
Entering edit mode
10.2 years ago
Jimbou ▴ 950

This website is very helpful:

http://www.statmethods.net/stats/correlations.html

and cor.test is my option of choice

http://stat.ethz.ch/R-manual/R-devel/library/stats/html/cor.test.html

For example:

cor.test(x, y,alternative = c("two.sided"),method = c("pearson"))
ADD COMMENT
1
Entering edit mode
10.2 years ago
arno.guille ▴ 410
mat = matrix(rnorm(1000),ncol=10,nrow=100)
cor(mat)

'var', 'cov' and 'cor' compute the variance of 'x' and the covariance or correlation of 'x' and 'y' if these are vectors. If 'x' and 'y' are matrices then the covariances (or correlations) between the columns of 'x' and the columns of 'y' are computed.

ADD COMMENT

Login before adding your answer.

Traffic: 1508 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6