Skip to content

Commit e7726ac

Browse files
committed
Update
1 parent 24765d4 commit e7726ac

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

index.Rmd

+25-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
knitr: bookdown::render_book
33
title: "Data Wrangling"
44
author: "Sara Altman, Bill Behrman, Hadley Wickham"
5-
date: "`r Sys.Date()`"
65
description: "A collection of readings on data wrangling."
76
url: 'https\://dcl-wrangle.stanford.edu'
87
github-repo: dcl-docs/wrangle
@@ -14,9 +13,33 @@ link-citations: true
1413

1514
# Welcome {-}
1615

16+
This book is a practical introduction to data wrangling using the tidyverse.
1717

18-
## How to read this book {-}
18+
In the following, we used these packages:
1919

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+
```
2043

2144
## An evolving book {-}
2245

0 commit comments

Comments
 (0)