You are here |
patchwork.data-imaginist.com | ||
| | | |
jeroenjanssens.com
|
|
| | | | Blog article by Jeroen Janssens. Dec 13, 2019. 6 min read. Because ggplot2 is the de-facto package for creating high-quality data visualizations in R, and has been for a long time, there exists many excellent resources for learning ggplot2, including: the ggplot2 website, a two-page cheat sheet (PDF), Stack Overflow, and books such as ggplot2: Elegant Graphics for Data Analysis and R Graphics Cookbook: Practical Recipes for Visualizing Data. A ggplot2 cheat sheet (PDF) Two days ago, I published... | |
| | | |
123ash.wordpress.com
|
|
| | | | These are some of the code snippets that I often need while using ggplot2 library. Increasing the font size of text to around 20 Rotating the labels so they are visible in case they are very long library(tidyverse) mtcars %>% ggplot(aes(x = reorder(row.names(mtcars), mpg), y = mpg, fill = mpg)) + geom_point() + theme_bw() +... | |
| | | |
zevross.com
|
|
| | | | One of the most powerful aspects of the R plotting package ggplot2 is the ease with which you can create multi-panel plots. With a single function you can split a single plot into many related plot... | |
| | | |
zevross.com
|
|
| | The purrr package is a functional programming superstar which provides useful tools for iterating through lists and vectors, generalizing code and removing programming redundancies. The purrr tools... |