A Detailed Guide to ggplot colors

Posted on Tue 14 May 2019 in R • Tagged with R, ggplot, colorsLeave a comment

In this guide, you'll learn how to incorporate your own custom color palettes into your ggplot graphs. You'll be able to differentiate between setting a static color and mapping a variable in your data to a color palette so that each color represents a different level of the variable. And you'll learn specifically how to customize color palettes for both continuous and categorical data in ggplot using the built-in ggplot color functions.

Continue reading

10 Steps to Better Graphs in R

Posted on Tue 07 May 2019 in R • Tagged with R, graph, ggplotLeave a comment

Over the last 5 years, I have created a LOT of graphs. And let me tell you, they haven't all been pretty. But with each new graph that I've created, I've improved my knowledge of what works and what doesn't. In this post, I share the 10-step graphing checklist I've developed to increase my impact and ability to drive change in an organization.

Continue reading

One Step to Quickly Improve the Readability and Visual Appeal of ggplot Graphs

Posted on Fri 03 May 2019 in R • Tagged with R, axis, tips, ggplotLeave a comment

We're all attracted to simple and visually appealing graphs. Unfortunately, we often don't put in the necessary effort to make sure our own graphs live up to their potential. In this guide, I'll show you how you can quickly and easily improve the readability of your ggplot graphs with a simple change to your axis titles!

Continue reading

Detailed Guide to the Bar Chart in R with ggplot

Posted on Wed 01 May 2019 in R • Tagged with R, ggplot, geom_bar, bar chart, bar graph, barplotLeave a comment

A bar chart is one of the most powerful ways to communicate data with a broad audience. This detailed guide to the bar chart in R will teach you how to create a ggplot bar chart using the geom_bar function!

Continue reading

A Detailed Guide to the ggplot Scatter Plot in R

Posted on Wed 24 April 2019 in R • Tagged with R, ggplot, scatter plot, geom_pointLeave a comment

A simple scatter plot can be one of the most powerful ways to convey graphical information. This detailed guide to the scatter plot in R will teach you how to create a ggplot scatter plot using the geom_point function

Continue reading

A Detailed Guide to Plotting Line Graphs in R using ggplot geom_line

Posted on Wed 17 April 2019 in R • Tagged with R, ggplot, line graph, geom_lineLeave a comment

Simple line graphs are one of the most powerful ways to convey graphical information. This detailed guide to plotting line graphs in R will teach you how to use with ggplot and geom_line to make your own line graphs in R

Continue reading