Queer European MD passionate about IT
Explorar o código

327 update to conventional ggplot syntax

Casey Bates %!s(int64=5) %!d(string=hai) anos
pai
achega
72265731ea
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      Mission327Solutions.Rmd

+ 1 - 2
Mission327Solutions.Rmd

@@ -127,7 +127,6 @@ Make a boxplot to see if there appear to be differences in how the three groups
 ```{r}
 combined_survey_gather %>%
   filter(response_type != "total") %>%
-  ggplot() +
-  aes(x = question, y = score, fill = response_type) +
+  ggplot(aes(x = question, y = score, fill = response_type)) +
   geom_boxplot()
 ```