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
• 4,931 views
•
link
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"))
• 253 views
•
link
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.
• 233 views
•
link
Log in to answer this question.