Przeglądaj źródła

Fichiers annexes régression

master
Maxime Wack 6 lat temu
rodzic
commit
47f186f86c
3 zmienionych plików z 19 dodań i 0 usunięć
  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 Wyświetl plik

@@ -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 Wyświetl plik

Przed Po
Szerokość: 2100  |  Wysokość: 2100  |  Rozmiar: 61KB

BIN
02_Regression/sepal_species.png Wyświetl plik

Przed Po
Szerokość: 2100  |  Wysokość: 2100  |  Rozmiar: 63KB

Ładowanie…
Anuluj
Zapisz