Re: Chapter 3: Analysis > Wrangle The output of the command ``` cars %>% mutate(transmission = ifelse(am == 0, "automatic", "manual")) %>% group_by(transmission) %>% summarise_all(mean) ``` is `manmual` instead of `manual`