library(tidyverse)
Nobel winners
Let’s first load the data:
<- ___(___) nobel
Then let’s split the data into two:
# stem laureates
<- nobel %>%
___ filter(___)
# non-steam laureates
<- nobel %>%
___ filter(___)
And finally write out the data:
# add code for writing out the two data frames here