diff --git a/02_Regression/figures.R b/02_Regression/figures.R new file mode 100644 index 0000000..b3cb156 --- /dev/null +++ b/02_Regression/figures.R @@ -0,0 +1,19 @@ +library(tidyverse) + +data(iris) + +( +iris %>% + ggplot() + + aes(x = Species, y = Sepal.Length) + + geom_jitter(width = .1) +)%>% + ggsave(plot = ., filename = "sepal_species.png") + +( +iris %>% + ggplot() + + aes(x = Petal.Length, y = Sepal.Length) + + geom_point() +)%>% + ggsave(plot = ., filename = "sepal_petal.png") diff --git a/02_Regression/sepal_petal.png b/02_Regression/sepal_petal.png new file mode 100644 index 0000000..c8a267d Binary files /dev/null and b/02_Regression/sepal_petal.png differ diff --git a/02_Regression/sepal_species.png b/02_Regression/sepal_species.png new file mode 100644 index 0000000..a5e16ae Binary files /dev/null and b/02_Regression/sepal_species.png differ