search for: colourbar

Displaying 9 results from an estimated 9 matches for "colourbar".

2018 Nov 14
2
Los puntos no tapen el mapa hecho ggplot
...nt_blank())+xlab("") + ylab("")+ geom_point(data=Data,aes(x=lon,y=lat,color= value),size=1.5) + scale_colour_gradient2(low = "white", mid = "blue",high = "red", midpoint = 175, guide="colourbar",limits=c(0,350))+ labs(title = "Depth of changes")) . -- Dr Manuel Mendoza Department of Biogeography and Global Change National Museum of Natural History (MNCN) Spanish Scientific Council (CSIC) C/ Serrano 115bis, 28006 MADRID Spain
2020 Jul 28
2
Superponer mapas en ggplot
...uot;grey70"))+ geom_path(data=map_data('world'), aes(x=long, y=lat,group=group)) ggplot(legend=FALSE)+ geom_point(data=NCDS,aes(x=lon,y=lat,color= ExtTG7085),shape=15,size=1) + # PTP o FTP scale_colour_gradient2(low = "white",high="RED",midpoint=0,guide="colourbar",limits=c(0,200))+ geom_path(data=map_data('world'), aes(x=long, y=lat,group=group)) [[alternative HTML version deleted]]
2019 Sep 19
2
ggplot con gradientes complejos
...theme(axis.ticks = element_blank()) + xlab("") + ylab("")+ geom_point(data=SGData2,aes(x=lon,y=lat,color=Ch7085),shape=15,size=1.5) + * scale_colour_gradient2(limits=c(-400, 200),low = "blue",high="red",midpoint=0*, guide="colourbar")+geom_path(data=world, aes(x=long, y=lat,group=group))+ labs(title = "ch7085") [[alternative HTML version deleted]]
2015 Nov 13
2
Colores en labels de un mapa
...categoria <- factor(base_puntos$categoria,levels = c("Agencia")) grafico<-ggplot() + geom_polygon(data = base_shape, aes(x = long, y = lat, group = group, fill = valor), color = "black", size = 0.25) + scale_fill_distiller(palette = "Reds", guide="colourbar") + theme_nothing(legend = TRUE) + geom_point(data = base_puntos, aes(x = long.agencia.utm, y =lat.agencia.utm, colour="Agencia"), size = 3.05, pch = 20, fill = "Blue")+ labs(title=paste(base_titulos,"\n(por provincias)"),fill="Temperatura",c...
2018 Dec 12
2
Subset dentro de un for
...ent_blank(),axis.text.y=element_blank())+ theme(axis.ticks = element_blank())+xlab("") + ylab("")+ geom_point(data=df2,aes(x=lon,y=lat, color= GT[i],size=2) + scale_colour_gradient(low=("white"),high=("red"),guide="colourbar",limits=c(0,max))+ geom_path(data=map_data('world'), aes(x=long, y=lat,group=group))+ labs(title = paste("5026 Minimum number of IFd species to go extinct")))) } Quoting Carlos Ortega <cof en qualityexcellence.es>: > Esta es una forma.....
2019 Sep 20
2
ggplot con gradientes complejos
...quot;) + ylab("")+ > > > > geom_point(data=SGData2,aes(x=lon,y=lat,color=Ch7085),shape=15,size=1.5) > + > > * scale_colour_gradient2(limits=c(-400, 200),low = > > "blue",high="red",midpoint=0*, > > guide="colourbar")+geom_path(data=world, aes(x=long, > > y=lat,group=group))+ > > labs(title = "ch7085") > > > > [[alternative HTML version deleted]] > > > > _______________________________________________ > > R-help-es mailing list >...
2018 Dec 12
2
Subset dentro de un for
...))+ >>         theme(axis.ticks = element_blank())+xlab("") + ylab("")+ >>         geom_point(data=df2,aes(x=lon,y=lat, >> >>         color= GT[i],size=2) + >> >> scale_colour_gradient(low=("white"),high=("red"),guide="colourbar",limits=c(0,max))+ >>         geom_path(data=map_data('world'), aes(x=long, >> y=lat,group=group))+ >>         labs(title =  paste("5026 Minimum number of IFd species to go >> extinct")))) >> >> } >> >> >> >> >&gt...
2019 Sep 20
2
ggplot con gradientes complejos
...gt; >> geom_point(data=SGData2,aes(x=lon,y=lat,color=Ch7085),shape=15,size=1.5) >> > + >> > > * scale_colour_gradient2(limits=c(-400, 200),low = >> > > "blue",high="red",midpoint=0*, >> > > guide="colourbar")+geom_path(data=world, aes(x=long, >> > > y=lat,group=group))+ >> > > labs(title = "ch7085") >> > > >> > > [[alternative HTML version deleted]] >> > > >> > > ________________________________...
2018 Dec 12
4
Subset dentro de un for
Muy buenas. Quiero hacer un loop en el que en cada iteración se hace un subset con el que se queda con las muestras para la que cierta variable es positiva. Si hago esto, sale bien: df2<-subset(df, subset = var1>0) Pero he probado así (y de no sé cuantas formas más), antes de hacer el for, y no sale: GT<- c("var1","var2", ? ) df2<-subset(df,