File tree 1 file changed +25
-2
lines changed
1 file changed +25
-2
lines changed Original file line number Diff line number Diff line change 2
2
knitr : bookdown::render_book
3
3
title : " Data Wrangling"
4
4
author : " Sara Altman, Bill Behrman, Hadley Wickham"
5
- date : " `r Sys.Date()`"
6
5
description : " A collection of readings on data wrangling."
7
6
url : ' https\://dcl-wrangle.stanford.edu'
8
7
github-repo : dcl-docs/wrangle
@@ -14,9 +13,33 @@ link-citations: true
14
13
15
14
# Welcome {-}
16
15
16
+ This book is a practical introduction to data wrangling using the tidyverse.
17
17
18
- ## How to read this book {-}
18
+ In the following, we used these packages:
19
19
20
+ ``` {r echo=FALSE}
21
+ sessioninfo::package_info(
22
+ pkgs =
23
+ c(
24
+ "dcldata",
25
+ "googlesheets4",
26
+ "httr",
27
+ "janitor",
28
+ "jsonlite",
29
+ "nycflights13",
30
+ "rvest",
31
+ "tidycensus",
32
+ "tidyverse",
33
+ "usethis",
34
+ "ussf"
35
+ ),
36
+ dependencies = FALSE
37
+ ) |>
38
+ tibble::as_tibble() |>
39
+ dplyr::mutate(Source = stringr::str_remove(source, "@\\w*")) |>
40
+ dplyr::select(Package = package, Version = ondiskversion, Source) |>
41
+ knitr::kable()
42
+ ```
20
43
21
44
## An evolving book {-}
22
45
You can’t perform that action at this time.
0 commit comments