Pourquoi un code plus propre?

Programmation fonctionnelle intermédiaire avec purrr

Colin Fay

Data Scientist & R Hacker

Où est Charlie?

library(broom)
library(dplyr)
lm(Sepal.Length ~ Species, data=iris) %>% tidy() %>% filter(p.value < 0.05)
lm(Pepal.Length ~ Species, data=iris) %>% tidy() %>% filter(p.value < 0.05)
lm(Sepal.Width ~ Species, data=iris) %>% tidy() %>% filter(p.value < 0.05)
lm(Sepal.Length ~ Species, data=iris) %>% tidy() %>% ilter(p.value < 0.05)
Programmation fonctionnelle intermédiaire avec purrr

Trouver Charlie

library(purrr)
tidy_iris_lm <- compose(
  as_mapper(~ filter(.x, p.value < 0.05)), 
  tidy, 
  partial(lm, data=iris, na.action = na.fail)
)

list( Petal.Length ~ Petal.Width, Petal.Width ~ Sepal.Width, Sepal.Width ~ Sepal.Length ) %>% map(tidy_iris_lm)
Programmation fonctionnelle intermédiaire avec purrr

Qu'est-ce qu'un code propre?

Un code propre, c'est :

  • Léger
  • Lisible
  • Interprétable
  • Facile à maintenir
Programmation fonctionnelle intermédiaire avec purrr

compose()

Composer des fonctions :

library(purrr)

rounded_mean <- compose(round, mean)
rounded_mean(1:2811)
1406
Programmation fonctionnelle intermédiaire avec purrr

Composer un code plus propre

# DE
round(mean(1:10))
round(mean(1:100))
round(mean(1:1000))
round(mean(1:10000))
# À
round(median(1:10))
round(median(1:100))
round(median(1:1000))
round(median(1:10000))

-> 4 changements

# DE
my_stats <- compose(round, mean)
my_stats(1:10)
my_stats(1:100)
my_stats(1:1000)
my_stats(1:10000)
# À
my_stats <- compose(round, median)
my_stats(1:10)
my_stats(1:100)
my_stats(1:1000)
my_stats(1:10000)

-> 1 changement

Programmation fonctionnelle intermédiaire avec purrr

Passons à la pratique !

Programmation fonctionnelle intermédiaire avec purrr

Preparing Video For Download...