07.qmd (588B)
1 --- 2 title: Cohort 7 3 --- 4 5 {{< video https://www.youtube.com/embed/kpAUoGO6elE >}} 6 7 <details> 8 9 <summary>Meeting chat log</summary> 10 ``` 11 00:09:40 Ryan Honomichl: https://drdoane.com/three-deep-truths-about-r/ 12 00:12:51 Robert Hilly: Be right back 13 00:36:12 Ryan Honomichl: brb 14 00:41:18 Ron: I tried mapply and also got different answers 15 00:41:44 collinberke: Interesting, would like to know more what is going on. 16 00:49:57 Robert Hilly: simple_map <- function(x, f, ...) { 17 out <- vector("list", length(x)) 18 for (i in seq_along(x)) { 19 out[[i]] <- f(x[[i]], ...) 20 } 21 out 22 } 23 ``` 24 </details>