-
Notifications
You must be signed in to change notification settings - Fork 491
/
95-appendixE.Rmd
44 lines (36 loc) · 1.2 KB
/
95-appendixE.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
35
36
37
38
39
40
41
42
43
# Versions of R Packages Used {#appendixE}
```{r message=FALSE, echo=FALSE, purl=FALSE}
# Packages needed internally, but not in text.
library(sessioninfo)
library(kableExtra)
```
If you are seeing different results than what is in the book, we recommend installing the exact version of the packages we used. This can be done by first installing the `remotes` package via `install.packages("remotes")`. Then, use `install_version()` replacing the `package` argument with the package name in quotes and the `version` argument with the particular version number to install.
```{r eval=FALSE}
remotes::install_version(package = "skimr", version = "1.0.6")
```
<!--
\begin{multicols}{2}
\setbox\ltmcbox\vbox{
\makeatletter\col@number\@ne
-->
```{r colophon, echo=FALSE}
package_info(needed_pkgs) %>%
as_tibble() %>%
filter(attached == TRUE | package %in% c("bookdown", "skimr")) %>%
select(package, version = ondiskversion) %>%
kable(
booktabs = TRUE,
linesep = "",
longtable = TRUE
) %>%
kable_styling(font_size = ifelse(is_latex_output(), 9, 16))
```
\vspace{-2in}
<!--
% Wrap this after the table to get into multiple columns
\unskip
\unpenalty
\unpenalty}
\unvbox\ltmcbox
\end{multicols}
-->