I try download matchprobes binary packages are in R 3.1.3 version. But it gives,
Warning message:
package 'matchprobes' is not available (as a binary package for R version 3.1.3).
How can I solve this problem?
I try download matchprobes binary packages are in R 3.1.3 version. But it gives,
Warning message:
package 'matchprobes' is not available (as a binary package for R version 3.1.3).
How can I solve this problem?
Try to install packages in R by:
source("http://bioconductor.org/biocLite.R")
biocLite("matchprobes")
or
Download the package (".tar.gz"/ ".zip"/ ".tgz") from http://www.bioconductor.org/packages/2.3/bioc/html/matchprobes.html
After downloading, install in R by:
install.packages("/path/of/downloaded/file//matchprobes_1.14.1.tgz", repos = NULL)
or, try from github. See this link, to install packages from github
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
This is off topic. Looks at similar problems on SO:
Solution:
I try download matchprobes binary packages are in R 3.1.3 version for Mac OS 10.8. So, windows solutions not suitable for me.