Session Ready
Exercise

Know your variable types

How many variables of each type do we have in the bakeoff data? You may use any of the data science tools we've learned for getting to know your data (dplyr and skimr are loaded for you). You may also want to try piping a skimmed object to summary(), also from the skimr package:

tibble_name %>% 
  skim() %>%  # no argument needed here
  summary() # no argument needed here

(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