Dear BioC,
I got mRNA gene expression (p-value and normalized expression level) of 623 genes from 12 samples.
I am very new to R and learning now. I am looking for helps to analysis our gene expression data:
1. Principal component analysis: between groups of samples
2. Gene expression correlation ( all to all)
Since I got R 3.3.3 run on R-studio, neither Biobase nor limma is compatible. It is greatly appreciated that if someone can help me with detailed scripts.
R > install.packages("Biobase")
Warning in install.packages : package ‘Biobase’ is not available (for R version 3.3.3)
Thank you so much for your helps.
Luan
install.packages
won't work.You can only install bioconductor packages using the
biocLite
function from theBiocInstaller
package.These instructions can be found on the Install page on the Bioconductor website, as well as the "Installation" section of each of the packages you are trying to install. For instance, take a look at the Installation section of the Biobase package.