tutorial script instalar ggplot r ggplot2 plyr

script - plot in r ggplot



ggplot2 no se puede instalar en R 3.0.2 (5)

Solucioné este problema escribiendo este comando:

$ sudo apt-get install r-cran-plyr $ sudo apt-get install r-cran-reshape2

No puedo instalar ggplot2 en R 3.0.2 en Ubuntu.

Cuando corro

install.packages(''ggplot2'',dependencies = TRUE)

Obtuve el siguiente error.

> install.packages(''ggplot2'',dependencies = TRUE) Installing package into ‘/home/gowthamn/R/x86_64-pc-linux-gnu-library/3.0’ (as ‘lib’ is unspecified) Warning in install.packages : dependencies ‘plyr’, ‘testthat’ are not available also installing the dependencies ‘reshape2’, ‘scales’, ‘Hmisc’ trying URL ''http://cran.rstudio.com/src/contrib/reshape2_1.4.1.tar.gz'' Content type ''application/x-gzip'' length 34693 bytes (33 Kb) opened URL ================================================== downloaded 33 Kb trying URL ''http://cran.rstudio.com/src/contrib/scales_0.2.4.tar.gz'' Content type ''application/x-gzip'' length 40093 bytes (39 Kb) opened URL ================================================== downloaded 39 Kb trying URL ''http://cran.rstudio.com/src/contrib/Hmisc_3.16-0.tar.gz'' Content type ''application/x-gzip'' length 629536 bytes (614 Kb) opened URL ================================================== downloaded 614 Kb trying URL ''http://cran.rstudio.com/src/contrib/ggplot2_1.0.1.tar.gz'' Content type ''application/x-gzip'' length 2351203 bytes (2.2 Mb) opened URL ================================================== downloaded 2.2 Mb ERROR: dependency ‘plyr’ is not available for package ‘reshape2’ * removing ‘/home/gowthamn/R/x86_64-pc-linux-gnu-library/3.0/reshape2’ Warning in install.packages : installation of package ‘reshape2’ had non-zero exit status ERROR: dependency ‘plyr’ is not available for package ‘scales’ * removing ‘/home/gowthamn/R/x86_64-pc-linux-gnu-library/3.0/scales’ Warning in install.packages : installation of package ‘scales’ had non-zero exit status ERROR: dependencies ‘plyr’, ‘reshape2’, ‘scales’ are not available for package ‘ggplot2’ * removing ‘/home/gowthamn/R/x86_64-pc-linux-gnu-library/3.0/ggplot2’ Warning in install.packages : installation of package ‘ggplot2’ had non-zero exit status ERROR: dependencies ‘ggplot2’, ‘scales’ are not available for package ‘Hmisc’ * removing ‘/home/gowthamn/R/x86_64-pc-linux-gnu-library/3.0/Hmisc’ Warning in install.packages : installation of package ‘Hmisc’ had non-zero exit status

También intenté

install.packages(c(''reshape2'',''scales''))

Recibe el error de que plyr no está disponible.

También actualicé Ubuntu y también reinstalé la última versión de R y actualicé los paquetes usando update.packages(checkBuilt=TRUE) . Pero, nada funcionó. ¿Que puedo hacer?


Debe actualizar su versión R (r-base) a la última. Línea de comando como:

$ sudo apt-get update $ sudo apt-get install r-base

actualizado no funcionó para mí.


Descargue la versión más reciente de r-base (3.2.2) desde [ http://cran.es.r-project.org/bin/linux/ubuntu/trusty/] use el Centro de software de Ubuntu para abrirlo e instalarlo. Esto actualizaría su versión ya instalada a la última. Luego intente instalar el paquete ggplot2 nuevamente. Funcionó para mí como la magia. ¡¡Suerte con ello!!


apt-get rastrea qué repos para buscar paquetes en /etc/apt/sources.list. El conjunto predeterminado definido en sources.list de la mayoría de las personas no incluye los duplicados de CRAN. Para usuarios de Ubuntu, puede agregar la siguiente línea a /etc/apt/sources.list:

deb https://<my.favorite.cran.mirror>/bin/linux/ubuntu <linux ver>/

Utilizo la versión ''confiable'' de Ubuntu y prefiero el espejo berkley cran, por lo que mi línea se ve así:

deb http://cran.cnr.berkeley.edu/bin/linux/ubuntu trusty/

Si necesita averiguar su versión de Ubuntu, intente ejecutar:

lsb_release -a

Ahora apt-get puede interactuar con un espejo CRAN por ti. ¡Disfrutar!


Si no necesita la última versión, puede instalar la versión empaquetada distribuida por Ubuntu usando:

sudo apt-get install r-cran-ggplot2