search for: fe9929

Displaying 2 results from an estimated 2 matches for "fe9929".

Did you mean: 9929
2023 Mar 27
1
Cambiar orden top-down stacked area ggplot2
...72, 157, 657, 618, 143, 3, 279, 75, 180, 688, 711, 205, 5, 275, 95, 185, 672, 817, 305, 5) data <- data.frame(year, sbcd, cat) ggplot(data, aes(x=year, y=sbcd, fill=cat)) + geom_area()+ scale_fill_manual(values=c("lightgoldenrodyellow","#FEE391","#FEC44F","#FE9929","#CD6600","#8B1A1A","red")) [[alternative HTML version deleted]]
2017 Sep 13
0
ggmap + geom_raster
...class = "data.frame") library(ggmap) library(RColorBrewer) MyMap <- get_map(location= "Orlando, FL", source="google", maptype="roadmap", crop=FALSE, zoom=7) YlOrBr <- c("#FFFFD4", "#FED98E", "#FE9929", "#D95F0E", "#993404") ggmap(MyMap) + stat_density_2d(data=s_rit, aes(x=lon, y=lat, fill=..level.., alpha=..level..), geom="polygon", size=0.01, bins=16) + scale_fill_gradient(low="red", high="green") + scale_...