-
Notifications
You must be signed in to change notification settings - Fork 3
/
week8.Rmd
35 lines (23 loc) · 893 Bytes
/
week8.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
title: "Week 8"
output:
html_document:
toc: true
toc_depth: 3
include:
after_body: footer.html
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, error=TRUE)
```
## More R packaging
* [The lecture notes](week8-adv-packages.html)
* [The lecture video](https://youtu.be/w0A1z8GtwF0)
## Q & A
I added more links to the lecture notes from the chat:
* **profvis** package
Check out the [**profvis**](https://rstudio.github.io/profvis/) for profiling your code. I haven't used it but others have said it's a great tool.
* **magrittr** 2.0!
The new version is much faster. [Read about it here](https://www.tidyverse.org/blog/2020/11/magrittr-2-0-is-here/)
* R 4.1 has a native pipe
It's a little different than the `%>%` pipe is denoted `|>`. [Read about R 4.1 here](https://www.jumpingrivers.com/blog/new-features-r410-pipe-anonymous-functions/).