Skip to main content
HomeAbout RLearn R

How to Make a Histogram in Base R: 6 Steps With Examples

Learn how to create a histogram with basic R using the hist() function. In 6 simple steps (with examples) you can make a basic R histogram for exploratory analysis.
Updated Feb 2023  · 10 min read

In this tutorial, we will be visualizing distributions of data by plotting histograms using the R programming language. We will cover what a histogram is, how to read data in R, how to create a histogram, and how to customize the plot. 

We will be using the base R programming language with no additional packages. This approach is only recommended when additional packages cannot be used or for quick exploratory analyses. In most cases, you should use ggplot2, as covered in the How to make a histogram in R in ggplot2 tutorial.

What is a histogram?

A histogram is a very popular graph that is used to show frequency distributions across continuous (numeric) variables. Histograms allow us to see the count of observations in data within ranges that the variable spans.

Histograms look similar to bar charts. A key difference between the two is that bar charts have a value associated with a specific category or discrete variable, while a histogram visualizes frequencies for continuous variables. 

Housing Data

We will be using this housing dataset which includes details about different house listings, including the size of the house, the number of rooms, the price, and location information. We can read the data using the read.csv() function, either directly from the URL or by downloading the csv file into a directory and reading it from our local storage. We can also specify that we only want to store the columns we are interested in for this tutorial; price and condition.  

home_data <- read.csv("https://raw.githubusercontent.com/rashida048/Datasets/master/home_data.csv")[ ,c('price', 'condition')]

Let’s look at the first few rows of data using the head() function

head(home_data, 5)

image11.png

How to Make a Histogram with base R using the hist() function

Next, we will create a histogram using the hist() function to look at the distribution of prices in our dataset. 

hist(home_data$price)

image1.png
Add descriptive statistics to histogram

We can add descriptive statistics to the histogram using the abline() function. This adds a vertical line to the plot. 

  • Set the v argument to the position on the x-axis for the vertical line. Here, we get the mean house price using mean()
  • The col argument set the line color, in this case to red.
  • The lwd argument sets the line width. A value of 3 increases the thickness of the line to make it easier to see.
hist(home_data$price)

abline(v = mean(home_data$price), col='red', lwd = 3)

Plotting probability densities instead of counts

To add a probability density line to the histogram, we first change the y-axis to be scaled to density. In the call to hist() , we set the probability argument to TRUE.

The probability density line is made with a combination of density(), which calculates the position of the probability density curve, and lines(), which adds the line to the existing plot. 

hist(home_data$price, probability = TRUE)
abline(v = mean(home_data$price), col='red', lwd = 3)
lines(density(home_data$price), col = 'green', lwd = 3)

image6.png

Notice that the numbers on the y-axis have changed.

Customize the color of the histogram using col 

We can change the colors inside of the bins on the histogram using the col parameter of the hist() function. We will change the fill to blue. We can also change the outline color of the bars using the border parameter. We will change the color of the outlines to white.  

hist(home_data$price, col = 'blue', border = "white")

image9.png

Add labels and titles using ylab, xlab, and main

We can change the labels on the plot to make it more readable and presentable. This is useful if you share the plot with others.

  •  xlab sets the x-axis label
  •  ylab sets the y-axis label
  •  main sets the plot title
hist(home_data$price, xlab = 'Price (USD)', ylab = 'Number of Listings', main = 'Distribution of House Prices')

image8.png

Start Learning R For Free

Visualization Best Practices in R

BeginnerSkill Level
4 hr
14.3K learners
Learn to effectively convey your data with an overview of common charts, alternative visualization types, and perception-driven style enhancements.

Update binning using breaks

With the default arguments, it is challenging to see the full distribution of the housing prices across the range of prices. We can see they are centralized in the first few bins, but they are not very descriptive. 

We can add more bins using the breaks parameter. With this argument, we can pass a vector of specific breakpoints to use, a function to compute the breakpoints, a number of breaks we would like, or a function to compute the number of cells. 

For this example, we will pass the number of bins we would like. This number is context-specific based on what you are trying to show in your graph.

hist(home_data$price, breaks = 100)

image2.png

With breaks set to 100, we have significantly more visibility into the distribution in the first few buckets. 

We can also specify the number of breaks using the names of common calculations for calculating optimal breaks in a histogram. By default, hist() uses the “Sturges” method (this is optional to pass as an argument because it is the default). 

hist(home_data$price, breaks = "Sturges")

image4.png

We can also pass “Scott” as an argument for the breaks attribute to use the Scott Method. 

hist(home_data$price, breaks = "Scott")

image10.png

Finally, we could also use the Freedman-Diaconis (FD) method. 

hist(home_data$price, breaks = "Freedman-Diaconis")

image5.png

Setting x-axis limits

We can set the x-axis limits of our plot using the xlim  argument to zoom in on the data we are interested in. For example, it is sometimes helpful to focus on the central part of the distribution, rather than over the long tail we currently see when we view the whole plot. 

Changing the y-axis limits is also possible (using the ylim argument) but this is less useful for histograms since the automatically calculated values are almost always ideal.

We will zoom in on prices between $0 and $2M.

hist(home_data$price, breaks = 100, xlim = c(0, 2000000))

image3.png

Take it to the next level

As you get more comfortable with R, you can explore more powerful packages that make it easier to build more interesting and useful visualizations. A very popular and easy-to-use library for plotting in R is called ggplot2. Below we create an interesting view of the distributions of prices based on the number of bedrooms in the house.  


image7.png

ggplot2 is the best way to visualize data in R, and you can learn about using it to create histograms in the How to make a histogram in R in ggplot2 tutorial. Check out our Introduction to ggplot2 course and our Intermediate ggplot2 course to learn how to make more interesting visualizations in R. 

In summary

In this tutorial, we learned that histograms are great visualizations for looking at distributions of continuous variables. We learned how to make a histogram in R, how to plot summary statistics on top of our histogram, how to customize features of the plot like the axis titles, the color, how we bin the x-axis, and how to set limits on the axes. Finally, we demonstrated some of the power of the ggplot2 library.

 Further Reading and Resources for Histogram Plotting in R:

  1. Introduction to Data Visualization with ggplot2
  2. Intermediate Data Visualization with ggplot2

    



R Courses

Introduction to R

BeginnerSkill Level
4 hr
2.5M
Master the basics of data analysis in R, including vectors, lists, and data frames, and practice R with real data sets.
See DetailsRight Arrow
Start Course
See MoreRight Arrow
Related

What is Data Analysis? An Expert Guide With Examples

Explore the world of data analysis with our comprehensive guide. Learn about its importance, process, types, techniques, tools, and top careers in 2023

Matt Crabtree

15 min

11 Data Visualization Techniques for Every Use-Case with Examples

Discover the most popular analyses, techniques and tools to master the art of data visualization wizard
Javier Canales Luna's photo

Javier Canales Luna

16 min

What is Microsoft Fabric?

Discover how Microsoft Fabric revolutionizes data analytics and learn about how its core features empower businesses to make data-driven decisions.
Kurtis Pykes 's photo

Kurtis Pykes

10 min

K-Nearest Neighbors (KNN) Classification with R Tutorial

Delve into K-Nearest Neighbors (KNN) classification with R. Learn how to use 'class' and 'caret' R packages, tune hyperparameters, and evaluate model performance.
Abid Ali Awan's photo

Abid Ali Awan

11 min

Performance and Scalability Unleashed: Mastering Single Table Database Design with DynamoDB

One table to rule them all: simplify, scale, and supercharge your NoSQL database!
Gary Alway's photo

Gary Alway

16 min

Introduction to Non-Linear Model and Insights Using R

Uncover the intricacies of non-linear models in comparison to linear models. Learn about their applications, limitations, and how to fit them using real-world data sets.

Somil Asthana

17 min

See MoreSee More