Selaa lähdekoodia

Fichiers annexes régression

master
Maxime Wack 6 vuotta sitten
vanhempi
commit
47f186f86c
3 muutettua tiedostoa jossa 19 lisäystä ja 0 poistoa
  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 Näytä tiedosto

@@ -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 Näytä tiedosto

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

BIN
02_Regression/sepal_species.png Näytä tiedosto

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

Loading…
Peruuta
Tallenna