the joy of functional programming
play

The joy of functional programming June 2019 Hadley Wickham - PowerPoint PPT Presentation

The joy of functional programming June 2019 Hadley Wickham @hadleywickham Chief Scientist, RStudio Import Visualise Tidy Transform Model Program Communicate Import Visualise Tidy Transform Model Program Communicate


  1. The joy of functional programming June 2019 Hadley Wickham 
 @hadleywickham 
 Chief Scientist, RStudio

  2. Import Visualise Tidy Transform Model Program Communicate

  3. Import Visualise Tidy Transform Model Program Communicate

  4. Motivation

  5. Imagine we want to read in a bunch of csv files # Find all the csv files in the current directory paths <- dir(pattern = "\\.csv$") # And read them in as data frames data <- vector("list", length(paths)) for (i in seq_along(paths)) { data[[i]] <- read.csv(paths[[i]]) }

  6. Imagine we want to read in a bunch of csv files # Find all the csv files in the current directory paths <- dir(pattern = "\\.csv$") R uses <- for assignment # And read them in as data frames data <- vector("list", length(paths)) for (i in seq_along(paths)) { data[[i]] <- read.csv(paths[[i]]) }

  7. A loop always has three components data <- vector("list", length(paths)) for (i in seq_along(paths)) { data[[i]] <- read.csv(paths[[i]]) }

  8. 1. Space for the output Create a new list of the correct size data <- vector("list", length(paths)) for (i in seq_along(paths)) { data[[i]] <- read.csv(paths[[i]]) }

  9. 2. A vector to iterate over Creates an integer vector from 1 to length(paths) data <- vector("list", length(paths)) for (i in seq_along(paths) ) { data[[i]] <- read.csv(paths[[i]]) } Avoid 1:length(paths) because it fails in unhappy way if paths has length 0

  10. 3. Code that’s run for every iteration data <- vector("list", length(paths)) for (i in seq_along(paths)) { data[[i]] <- read.csv(paths[[i]]) } Extract element i from paths Use [[ whenever you get or set a single element

  11. There’s nothing wrong with using a loop library(purrr) # But the FP equivalent is much shorter data <- map(paths, read.csv) # And has convenient extensions data <- map_dfr(paths, read.csv, id = "path")

  12. Why not for loops?

  13. The hummingbird Vanilla cupcakes bakery cookbook Preheat oven to 350°F. 1 cup flour a scant ¾ cup sugar Put the flour, sugar, baking powder, salt, and butter in a freestanding electric mixer with a paddle attachment and beat on 1 ½ t baking powder slow speed until you get a sandy consistency and everything is 3 T unsalted butter combined. ½ cup whole milk Whisk the milk, egg, and vanilla together in a pitcher, then slowly pour about half into the flour mixture, beat to combine, and turn 1 egg the mixer up to high speed to get rid of any lumps. ¼ t pure vanilla extract Turn the mixer down to a slower speed and slowly pour in the remaining milk mixture. Continue mixing for a couple of more minutes until the batter is smooth but do not overmix. Spoon the batter into paper cases until 2/3 full and bake in the preheated oven for 20-25 minutes, or until the cake bounces back when touched.

  14. The hummingbird Chocolate cupcakes bakery cookbook ¾ cup + 2T flour Preheat oven to 350°F. 2 ½ T cocoa powder Put the flour, cocoa, sugar, baking powder, salt, and butter in a freestanding electric mixer with a paddle attachment and beat on a scant ¾ cup sugar slow speed until you get a sandy consistency and everything is 1 ½ t baking powder combined. 3 T unsalted butter Whisk the milk, egg, and vanilla together in a pitcher, then slowly ½ cup whole milk pour about half into the flour mixture, beat to combine, and turn the mixer up to high speed to get rid of any lumps. 1 egg Turn the mixer down to a slower speed and slowly pour in the ¼ t pure vanilla extract remaining milk mixture. Continue mixing for a couple of more minutes until the batter is smooth but do not overmix. Spoon the batter into paper cases until 2/3 full and bake in the preheated oven for 20-25 minutes, or until the cake bounces back when touched.

  15. The hummingbird Chocolate cupcakes bakery cookbook ¾ cup + 2T flour Preheat oven to 350°F. 2 ½ T cocoa powder Put the flour, cocoa, sugar, baking powder, salt, and butter in a freestanding electric mixer with a paddle attachment and beat on a scant ¾ cup sugar slow speed until you get a sandy consistency and everything is 1 ½ t baking powder combined. 3 T unsalted butter Whisk the milk, egg, and vanilla together in a pitcher, then slowly ½ cup whole milk pour about half into the flour mixture, beat to combine, and turn the mixer up to high speed to get rid of any lumps. 1 egg Turn the mixer down to a slower speed and slowly pour in the ¼ t pure vanilla extract remaining milk mixture. Continue mixing for a couple of more minutes until the batter is smooth but do not overmix. Spoon the batter into paper cases until 2/3 full and bake in the preheated oven for 20-25 minutes, or until the cake bounces back when touched.

  16. The hummingbird Vanilla cupcakes bakery cookbook Preheat oven to 350°F. 120g flour Put the flour, sugar, baking powder, salt, and butter in a 140g sugar freestanding electric mixer with a paddle attachment and beat on 1.5 t baking powder slow speed until you get a sandy consistency and everything is 40g butter combined. 120ml milk Whisk the milk, egg, and vanilla together in a pitcher, then slowly pour about half into the flour mixture, beat to combine, and turn 1 egg the mixer up to high speed to get rid of any lumps. 0.25 t vanilla Turn the mixer down to a slower speed and slowly pour in the remaining milk mixture. Continue mixing for a couple of more minutes until the batter is smooth but do not overmix. Spoon the batter into paper cases until 2/3 full and bake in the preheated oven for 20-25 minutes, or until the cake bounces back when touched.

  17. The hummingbird Vanilla cupcakes bakery cookbook Beat flour, sugar, baking powder, salt, and butter until sandy. 120g flour Whisk milk, egg, and vanilla. Mix half into flour mixture until 140g sugar smooth (use high speed). Beat in remaining half. Mix until 1.5 t baking powder smooth. 40g butter Bake 20-25 min at 170°C. 120ml milk 1 egg 0.25 t vanilla

  18. The hummingbird Vanilla cupcakes bakery cookbook Beat dry ingredients + butter until sandy. 120g flour Whisk together wet ingredients. Mix half into dry until smooth 140g sugar (use high speed). Beat in remaining half. Mix until smooth. 1.5 t baking powder Bake 20-25 min at 170°C. 40g butter 120ml milk 1 egg 0.25 t vanilla

  19. Cupcakes Vanilla Chocolate Beat dry ingredients + butter until 120g flour 100g flour sandy. 20g cocoa Whisk together wet ingredients. 140g sugar 140g sugar Mix half into dry until smooth 1.5t baking powder 1.5t baking powder (use high speed). Beat in 40g butter 40g butter remaining half. Mix until smooth. Bake 20-25 min at 170°C. 120ml milk 120ml milk 1 egg 1 egg 0.25 t vanilla 0.25 t vanilla

  20. Cupcakes Vanilla Chocolate Espresso 120g flour Beat dry ingredients + butter until 120g flour 100g flour sandy. 20g cocoa Whisk together wet ingredients. 140g sugar 140g sugar 140g sugar Mix half into dry until smooth 1.5t baking powder 1.5t baking powder 1.5t baking powder (use high speed). Beat in 40g butter 40g butter 40g butter remaining half. Mix until smooth. 120ml milk + 10g espresso powder Bake 20-25 min at 170°C. 120ml milk 120ml milk 1 egg 1 egg 1 egg 0.25 t vanilla 0.25 t vanilla

  21. What do these for loops do? mpg cyl disp hp drat <dbl> <dbl> <dbl> <dbl> <dbl> 1 21 6 160 110 3.9 ... 2 21 6 160 110 3.9 ... 3 22.8 4 108 93 3.85 ... out1 <- vector("double", ncol(mtcars)) 4 21.4 6 258 110 3.08 ... 5 18.7 8 360 175 3.15 ... for(i in seq_along(mtcars)) { . ... . ... ... .... ... out1[[i]] <- mean(mtcars[[i]], na.rm = TRUE) } Extracts column i out2 <- vector("double", ncol(mtcars)) for(i in seq_along(mtcars)) { out2[[i]] <- median(mtcars[[i]], na.rm = TRUE) }

  22. For loops emphasise the objects out1 <- vector("double", ncol( mtcars )) for(i in seq_along( mtcars )) { out1 [[i]] <- mean( mtcars [[i]], na.rm = TRUE) } out2 <- vector("double", ncol( mtcars )) for(i in seq_along( mtcars )) { out2 [[i]] <- median( mtcars [[i]], na.rm = TRUE) }

  23. Not the actions out1 <- vector("double", ncol(mtcars)) for(i in seq_along(mtcars)) { out1[[i]] <- mean (mtcars[[i]], na.rm = TRUE) } out2 <- vector("double", ncol(mtcars)) for(i in seq_along(mtcars)) { out2[[i]] <- median (mtcars[[i]], na.rm = TRUE) }

  24. Functional programming weights action and object equally out1 <- map_dbl( mtcars , mean , na.rm = TRUE) out2 <- map_dbl( mtcars , median , na.rm = TRUE)

  25. And combines well with the pipe out1 <- mtcars %>% map_dbl(mean, na.rm = TRUE) out2 <- mtcars %>% map_dbl(median, na.rm = TRUE)

  26. Which is particularly important for harder problems diamonds %>% split_by(diamonds$color) %>% map(~ lm(log(price) ~ log(carat), .x)) %>% map_dfr(broom::tidy, .id = "color")

  27. Of course someone has to write loops. It doesn’t have to be you . — Jenny Bryan

  28. Getting data https://www.gov.uk/government/statistics/family-food-open-data

  29. Demo

  30. Generating reports

  31. Demo

  32. Conclusion

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend