This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Pearson’S Correlation Method In R

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

2 answers

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"))
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.

Log in to answer this question.