ggplot2
Una gramática para gráficos que facilita las presentaciones.
> install.packages("ggplot2")
library(ggplot2)
elecciones <- read.csv('../data/resultadoselecciones2015.csv')
qplot(elecciones$Sector, elecciones$Votos,
color=elecciones$Candidato)
qplot(elecciones$Sector, elecciones$Votos,
color=elecciones$Candidato,size=elecciones$Votos)
qplot(data=elecciones, x=Sector, y=Votos,
geom="bar",stat="identity", fill=Candidato)
ggsave("qplot-bar.png")
qplot(data=elecciones, x=Sector, y=Votos,
geom="bar",stat="identity", fill=Candidato,
facets=Candidato~Sector)
## Publicaciones
```{r, echo=FALSE, message=FALSE,results='hide',warning=FALSE}
library(ggplot2)
library(reshape2)
publicaciones.UGR
<- investigacion.UGR[investigacion.UGR$Tipo.de.Estadística=="Publicaciones ISI",]
publicaciones.UGR.year
<- melt(publicaciones.UGR,id.vars=1:2,variable.name="year")
pubs.WOS
<- publicaciones.UGR.year[publicaciones.UGR.year$Denominación
== "No. pub. WoS (Thomson)",]
pubs.WOS$value <- as.integer(pubs.WOS$value)
qplot(data=pubs.WOS,x=year,y=value)
```