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
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
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.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.