CommencerCommencer gratuitement

Three binwidths

Before you take these plots for granted, it's a good idea to see how things change when you alter the binwidth. The binwidth determines how smooth your distribution will appear: the smaller the binwidth, the more jagged your distribution becomes. It's good practice to consider several binwidths in order to detect different types of structure in your data.

Cet exercice fait partie du cours

Exploratory Data Analysis in R

Afficher le cours

Instructions

Create the following three plots, adding a title to each to indicate the binwidth used:

  • A histogram of horsepower (i.e. horsepwr) with a binwidth of 3.
  • A second histogram of horsepower with a binwidth of 30.
  • A third histogram of horsepower with a binwidth of 60.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Create hist of horsepwr with binwidth of 3
cars %>%
  ggplot(aes(___)) +
  geom_histogram(binwidth = ___) +
  ggtitle(___)

# Create hist of horsepwr with binwidth of 30


# Create hist of horsepwr with binwidth of 60

Modifier et exécuter le code