Bläddra i källkod

Fichiers annexes régression

master
Maxime Wack 6 år sedan
förälder
incheckning
47f186f86c
3 ändrade filer med 19 tillägg och 0 borttagningar
  1. +19
    -0
      02_Regression/figures.R
  2. Binär
      02_Regression/sepal_petal.png
  3. Binär
      02_Regression/sepal_species.png

+ 19
- 0
02_Regression/figures.R Visa fil

@@ -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är
02_Regression/sepal_petal.png Visa fil

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

Binär
02_Regression/sepal_species.png Visa fil

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

Laddar…
Avbryt
Spara