Browse Source

Fichiers annexes régression

master
Maxime Wack 6 years ago
parent
commit
47f186f86c
3 changed files with 19 additions and 0 deletions
  1. +19
    -0
      02_Regression/figures.R
  2. BIN
      02_Regression/sepal_petal.png
  3. BIN
      02_Regression/sepal_species.png

+ 19
- 0
02_Regression/figures.R View File

@@ -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")

BIN
02_Regression/sepal_petal.png View File

Before After
Width: 2100  |  Height: 2100  |  Size: 61KB

BIN
02_Regression/sepal_species.png View File

Before After
Width: 2100  |  Height: 2100  |  Size: 63KB

Loading…
Cancel
Save