[[1]]
[1] "1 seconds have passed"
[[2]]
[1] "2 seconds have passed"
[[3]]
[1] "3 seconds have passed"
[[4]]
[1] "4 seconds have passed"
[[5]]
[1] "5 seconds have passed"
2024-06-05
purrr
gt
purrr
Functions can be easily applied to multiple elements using functional functions: special functions that uses another function as one of its arguments.
purrr
:
purrr
map
family of functions: works by taking a vector (or list), applying a function to each of those items, and outputting the results from each function call.purrr
purrr
Benefits of Using purrr
What is Quarto?
Open-source scientific publishing system
Supports R and Python
Integrates code, text, and outputs in one document (HTML, DOCX)
Text formatting:
**bold**
,_italic_
,# Headers 1
,## Headers 2
Lists:
Unordered lists with -
or *
Ordered lists with 1.
R Code chunks:
gt
Create publication ready tables in R directly from your data.
There is many functions to style and format tables to match your needs:
Tables can be exported in many format including html or MS Word.
gt
Basic Git Workflow:
git branch new-branch-name
git checkout new-branch-name
git add .
, git commit -m "message"
git checkout main
, git merge new-branch-name