|
Dear experts,
I have to install ggplot2 packages for R 2.11 and 2.12 but this is available for 2.14 only. My question: are there urls for previous R version which can be use in install.packages ? Thanks Miklos ______________________________________________ [hidden email] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. |
|
Hi Miklos,
Probably you will have to use R CMD install and archive from http://cran.r-project.org/web/packages/ggplot2/index.html Regards, Pascal ----- Mail original ----- De : Miklós Emri <[hidden email]> À : [hidden email] Cc : Envoyé le : Mercredi 7 mars 2012 21h59 Objet : [R] repositories for 2.11 & 2.12 Dear experts, I have to install ggplot2 packages for R 2.11 and 2.12 but this is available for 2.14 only. My question: are there urls for previous R version which can be use in install.packages ? Thanks Miklos ______________________________________________ [hidden email] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. ______________________________________________ [hidden email] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. |
|
In reply to this post by Miklós Emri
On 12-03-07 7:59 AM, Miklós Emri wrote:
> Dear experts, > > I have to install ggplot2 packages for R 2.11 and 2.12 but this is > available for 2.14 only. > My question: are there urls for previous R version which can be use in > install.packages ? > Generally old copies of source packages are stored on CRAN, but not old binaries. So you'll need to figure out which versions of ggplot2 you want, and install them yourself. Or just restore them from your backups. You have archived backups, don't you? Duncan Murdoch ______________________________________________ [hidden email] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. |
|
On 07/03/2012 15:45, Duncan Murdoch wrote:
> On 12-03-07 7:59 AM, Miklós Emri wrote: >> Dear experts, >> >> I have to install ggplot2 packages for R 2.11 and 2.12 but this is >> available for 2.14 only. >> My question: are there urls for previous R version which can be use in >> install.packages ? >> > > Generally old copies of source packages are stored on CRAN, but not old > binaries. So you'll need to figure out which versions of ggplot2 you > want, and install them yourself. Actually, binaries are usually there, e.g. http://cran.r-project.org/bin/windows/contrib/2.11/ggplot2_0.8.9.zip . And I would expect install.packages() in the appropriate version of R to find these. So I at least have no idea what the real problem is. > Or just restore them from your backups. You have archived backups, don't > you? > > Duncan Murdoch > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. Which does say explicitly that 'R 2.11 and R 2.12' do not exist and that we only support current R (read R >= 2.14.2 at present). -- Brian D. Ripley, [hidden email] Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272866 (PA) Oxford OX1 3TG, UK Fax: +44 1865 272595 ______________________________________________ [hidden email] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. |
|
On 03/07/2012 04:58 PM, Prof Brian Ripley wrote:
> On 07/03/2012 15:45, Duncan Murdoch wrote: >> On 12-03-07 7:59 AM, Miklós Emri wrote: >>> Dear experts, >>> >>> I have to install ggplot2 packages for R 2.11 and 2.12 but this is >>> available for 2.14 only. >>> My question: are there urls for previous R version which can be use in >>> install.packages ? >>> >> >> Generally old copies of source packages are stored on CRAN, but not old >> binaries. So you'll need to figure out which versions of ggplot2 you >> want, and install them yourself. > > Actually, binaries are usually there, e.g. > http://cran.r-project.org/bin/windows/contrib/2.11/ggplot2_0.8.9.zip . > > And I would expect install.packages() in the appropriate version of R > to find these. No, unfortunately it does not find it: > sessionInfo() R version 2.12.2 (2011-02-25) > install.packages( "ggplot2" ) Installing package(s) into ‘/usr/local/lib/R/site-library’ (as ‘lib’ is unspecified) Warning message: In getDependencies(pkgs, dependencies, available, lib) : package ‘ggplot2’ is not available > > Which does say explicitly that 'R 2.11 and R 2.12' do not exist and > that we only support current R (read R >= 2.14.2 at present). > I know that the 2.14 is the most recent version, and the ggplot2 requirement >=2.14, but I have no permission to upgrade the R in our linux system, so I was looking for an url, which help me to install ggplot2 and its dependencies in a simple way for R version 2.12.2. Now I see that I have to download and install all required packages manually. Thanks for suggestions Miklos ______________________________________________ [hidden email] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. |
|
On 07.03.2012 18:31, Miklós Emri wrote: > On 03/07/2012 04:58 PM, Prof Brian Ripley wrote: >> On 07/03/2012 15:45, Duncan Murdoch wrote: >>> On 12-03-07 7:59 AM, Miklós Emri wrote: >>>> Dear experts, >>>> >>>> I have to install ggplot2 packages for R 2.11 and 2.12 but this is >>>> available for 2.14 only. >>>> My question: are there urls for previous R version which can be use in >>>> install.packages ? >>>> >>> >>> Generally old copies of source packages are stored on CRAN, but not old >>> binaries. So you'll need to figure out which versions of ggplot2 you >>> want, and install them yourself. >> >> Actually, binaries are usually there, e.g. >> http://cran.r-project.org/bin/windows/contrib/2.11/ggplot2_0.8.9.zip . > ok, thanks. >> >> And I would expect install.packages() in the appropriate version of R >> to find these. > No, unfortunately it does not find it: > > > sessionInfo() > R version 2.12.2 (2011-02-25) > > > install.packages( "ggplot2" ) > Installing package(s) into ‘/usr/local/lib/R/site-library’ > (as ‘lib’ is unspecified) > Warning message: > In getDependencies(pkgs, dependencies, available, lib) : > package ‘ggplot2’ is not available > > >> >> Which does say explicitly that 'R 2.11 and R 2.12' do not exist and >> that we only support current R (read R >= 2.14.2 at present). >> > I know that the 2.14 is the most recent version, and the ggplot2 > requirement >=2.14, but I have no permission to upgrade the R in our > linux system, so I was looking for an url, which help me to install > ggplot2 and its dependencies in a simple way for R version 2.12.2. > Now I see that I have to download and install all required packages > manually. Get an old version from the archives on CRAN. Uwe Ligges > > Thanks for suggestions > Miklos > > ______________________________________________ > [hidden email] mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. ______________________________________________ [hidden email] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. |
| Powered by Nabble | Edit this page |
