Session Ready
Exercise

Arrange and glimpse

From here, if we don't ask you to load a package, you can assume it's already loaded.

You can combine glimpse() with other functions in a sequence using the pipe (%>%) operator. For example, you can use other dplyr functions like arrange first, then use glimpse by adding a line after the final pipe (%>%):

bakers_mini %>% 
  arrange(age) %>% 
  glimpse() # no argument needed here

Take a glimpse of the bakeoff data we imported in the first set of exercises. On which date did the first episode of the show air in the US?

(Pressing Enter in the console will not add a new line, but will run the code on the current line. If you'd like to add a new line before running your code, you can use Shift+Enter)

Instructions
50 XP
Possible Answers