We're having an internal discussion on code style (that I'm losing). So I thought I would appeal to a higher authority.
Which of the following is the recommended formatting method:
# Option 1
dplyr::filter(x, year == 2017)
# Option 2
x %>% dplyr::filter(year == 2017)
# Option 3
x %>%
dplyr::filter(year == 2017)