Session 10
October 1, 2024
Important
Make sure you are in the right project and on an appropriate branch!
for loops:
purrr::map:
for loopsfor(<thing> in <some things>) {
<do something with or to the thing>
}
for(i in 1:10) {
print(i^2)
}
for loopspurrr::mappurrr::mappurrr and furrr documentation