bookclub-advr

DSLC Advanced R Book Club
git clone https://git.eamoncaddigan.net/bookclub-advr.git
Log | Files | Refs | README | LICENSE

06.qmd (1265B)


      1 ---
      2 title: Cohort 6
      3 ---
      4 {{< video https://www.youtube.com/embed/buUaaOu89EQ >}}
      5 <details>
      6 <summary> Meeting chat log </summary>
      7 ```
      8 00:08:41	Arthur Shaw:	Hello, everyone!
      9 00:21:31	Federica Gazzelloni:	?walk: Apply a function to each element of a list or atomic vector
     10 00:23:15	Federica Gazzelloni:	?caller_env: Get properties of the current or caller frame
     11 00:24:56	Trevin:	purrr::walk(x, function(x, ce, ace = rlang::caller_env()) {
     12   .ce <- rlang::caller_env()
     13   message("Internal: ")
     14   print(.ce)
     15   message("Argument: ")
     16   print(ace)
     17   message("External: ")
     18   print(ce)
     19   message("Internal: ",paste0(ls(.ce), collapse = "\n"))
     20   message("Argument: ",paste0(ls(ace), collapse = "\n"))
     21   message("External: ",paste0(ls(ce), collapse = "\n"))
     22 }, ce = rlang::caller_env())
     23 00:29:39	Federica Gazzelloni:	??iwalk: Apply a function to each element of a vector, and its index
     24 00:35:30	Arthur Shaw:	https://magrittr.tidyverse.org/reference/tee.html
     25 00:36:05	Federica Gazzelloni:	?`%T>%`
     26 00:46:59	Trevin:	?eval
     27 01:06:03	Federica Gazzelloni:	https://cran.r-project.org/web/packages/withr/index.html
     28 01:09:21	Federica Gazzelloni:	https://github.com/r-lib/withr
     29 01:10:38	Trevin:	I'm okay if we meet next week
     30 01:10:53	Oluwafemi Oyedele:	I am ok with next week
     31 ```
     32 </details>