Vì sao cần code sạch?

Lập trình hàm nâng cao với purrr

Colin Fay

Data Scientist & R Hacker

Waldo ở đâu?

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)
Lập trình hàm nâng cao với purrr

Tìm Waldo

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)
Lập trình hàm nâng cao với purrr

Code sạch là gì?

Code sạch là:

  • Gọn nhẹ
  • Dễ đọc
  • Dễ hiểu
  • Dễ bảo trì
Lập trình hàm nâng cao với purrr

compose()

Kết hợp hàm:

library(purrr)

rounded_mean <- compose(round, mean)
rounded_mean(1:2811)
1406
Lập trình hàm nâng cao với purrr

Kết hợp để code sạch hơn

# TỪ
round(mean(1:10))
round(mean(1:100))
round(mean(1:1000))
round(mean(1:10000))
#SANG
round(median(1:10))
round(median(1:100))
round(median(1:1000))
round(median(1:10000))

-> 4 thay đổi

# TỪ
my_stats <- compose(round, mean)
my_stats(1:10)
my_stats(1:100)
my_stats(1:1000)
my_stats(1:10000)
#SANG
my_stats <- compose(round, median)
my_stats(1:10)
my_stats(1:100)
my_stats(1:1000)
my_stats(1:10000)

-> 1 thay đổi

Lập trình hàm nâng cao với purrr

Cùng luyện tập nào!

Lập trình hàm nâng cao với purrr

Preparing Video For Download...