问题
I would like to install the packages mvcwt
and SynchWave
but get following messages:
Warning message:
package ‘mvcwt’ is not available (for R version 3.0.2)
Warning message:
package ‘syncwave’ is not available (for R version 3.0.2)
In the reference manual to mvcwt
there is no reference on which version of R the package depends. But the publication date of the package is 2013-11-06
, so the package is not old.
In the reference manual to SynchWave
one can read: "Depends R (>= 2.13), fields (>= 6.7.6)", so it should work wich my version (3.0.2
), or?
Why I cannot install these packages?
回答1:
I am able to instal mvcwt on my machine (also R 3.0.2). If you can't, it may be the mirror is not up to date. I always use the 0-cloud mirror (really rstudio.org) because it seems to be the most up to date.
For the second package, it should be install.packages('SynchWave')
. You had: install.packages('syncwave')
. I was also able to install this package for R 3.0.2.
来源:https://stackoverflow.com/questions/19838358/package-syncwave-mvcwt-is-not-available-for-r-version-3-0-2