In the previous exercise we calculated the the population in millions for each state
library(dslabs) data(murders) population_in_millions <- murders$population/10^6
Create a histogram of the state populations in millions using the hist function.
hist