How To Make a Histogram in R

Channel:
Subscribers:
53,300
Published on ● Video Link: https://www.youtube.com/watch?v=tp_BG5wDeVU



Category:
Guide
Duration: 2:16
39,901 views
293


Histograms are single variable plots that let you get a sense of the distribution of a numeric variable. Histograms are easy to make in both base R and ggplot2.

Code used in this clip:

# Historgram in base R
library(tidyverse)

data <- diamonds

hist(diamonds$price)

# Change the number of bins with the "breaks" argument:
hist(diamonds$price, breaks = 100)

# Histogram in ggplot2

data %>% ggplot(aes(x = price)) +
geom_histogram(bins=100, color = "black", fill="gray90")


Code Clips are basic code explanations in 3 minutes or less. They are intended to be short reference guides that provide quick breakdowns and copy/paste access to code needed to accomplish common data science tasks. Think Stack Overflow with a video explanation.


* Note: YouTube does not allow greater than or less than symbols in the text description, so the code above may not be exactly the same as the code shown in the video! For R that means I may use = for assignment and the special Unicode large < and > symbols in place of the standard sized ones for dplyr pipes and comparisons. These special symbols should work as expected for R code on Windows, but may need to be replaced with standard greater than and less than symbols for other operating systems.







Tags:
R histogram
r histogram tutorial
r histogram ggplot
histogram in r
r plotting tutorial
r plotting basics
code clip
base r plots
ggplot2
how to make a histogram in r
plotting distributions
histogram bins
geom_histogram
histogram buckets
histogram breaks
histogram
r programming
data analysis
geom_histogram()
make a histogram in r
make a histogram with ggplot
ggplot
how to make histograms in r