How to install methylKit package in R version 3.2.3 - r

I am trying to install methylKit package in R version 3.2.3 .
When I install this package it gives error
biocLite("methylKit, lib="")
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘methykit/’ is not available (for R version 3.2.3)
shall I have to really upgrade R version??
Please reply as I am very confused regarding this.
Thanks in advance!

Try this:
source("https://bioconductor.org/biocLite.R")
biocLite("methylKit")

Related

Why don't I install package "plotGoogleMaps"?

I ditn't install this package. An error has occurred:
install.packages("plotGoogleMaps")
Installing package into ‘C:/Users/ADMIN/Documents/R/win-library/4.0’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘plotGoogleMaps’ is not available for this version of R
A version of this package for your version of R might be available elsewhere,
see the ideas at
https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages
Can you help me?
try install.packages("plotGoogleMaps", repos="http://R-Forge.R-project.org")

install arcgisbinding package in R version 3.5.0,get warning: as ‘lib’ is unspecified,package ‘‘arcgisbinding’ is not available

I try to install "arcgisbinding" package in R version 3.5.0. But I failed, get the following error and warning.
Installing package into ‘C:/Users/Lenovo/Documents/R/win-library/3.5’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘‘arcgisbinding’ is not available (for R version 3.5.0)
I also try to install this package in R version 3.4.3, get the same error and warning. I thought the main reason for this is the ‘lib’ is unspecified.
I am confused because that the "arcgisbinding" package can be installed on R >= 3.2, based on the introduction of the official website - PDF.
Could anyone help me? Thanks so much.
First, download the "arcgisbinding" package manually from GitHub: https://github.com/R-ArcGIS/r-bridge/releases/tag/v1.0.1.232.
Second, install this package in Rstudio using the menu "Tools">"install packages", and then choose the downloaded package archive. The installation is very fast.

Cant install package rwf on multiple R versions

I cant install package rwf. I am getting error:
Installing package into ‘C:/Users/This_user/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘rwf’ is not available (for R version 3.4.3)
Same situation happened for version 3.4.0. I cant figure out what is a problem here.
Thank you in advance.

Error installing SPEI package in R

I am trying to install SPEI in Rstudio, version 1.1.414, running on Windows 7. However, I get the following error message in the console:
install.packages("SPEI")
Installing package into ‘C:/Users/xxx/Documents/R/win-library/3.2’
(as ‘lib’ is unspecified)
Warning in install.packages :
dependency ‘goftest’ is not available
also installing the dependency ‘lmomco’
It appears that this "goftest" package is unavailable, so how can I proceed?
Thank you.
'goftest' documentation says
Depends R (>= 3.3)
so probably you should upgrade to a later version of R to use the package: https://cran.r-project.org/web/packages/goftest/goftest.pdf

Package ‘TreeTagger’ is not available (for R version 3.3.2)

I try to install TreeTagger Package, but it is impossible for this version of R.
I get this error message :
> install.packages("TreeTagger", repos = "https://cran.rstudio.com")
Installing package into ‘C:/Users/A579856/Documents/R/win-library/3.3’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘TreeTagger’ is not available (for R version 3.3.2)
Any idea to help me please?
Thank you
It's true: No such file on CRAN: https://cran.r-project.org/web/packages/
Are you looking for this tool? http://www.cis.uni-muenchen.de/~schmid/tools/TreeTagger/
Apparantly the koRpus package can be used as a R wrapper to that. See heading 2.1 in it'S vignette https://cran.r-project.org/web/packages/koRpus/vignettes/koRpus_vignette.pdf

Resources