-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.Rmd
35 lines (28 loc) · 1.57 KB
/
index.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
---
knitr: bookdown::render_book
title: "Functional Programming"
author: "Sara Altman, Bill Behrman, Hadley Wickham"
description: "This book is a practical introduction to functional programming using the tidyverse."
url: 'https\://dcl-prog.stanford.edu'
github-repo: dcl-docs/prog
site: bookdown::bookdown_site
documentclass: book
#bibliography: references.bib
link-citations: true
---
# Welcome {-}
This book is a practical introduction to functional programming using the tidyverse.
In the following, we used these packages:
```{r echo=FALSE}
sessioninfo::package_info(
pkgs = c("dcldata", "nycflights13", "tidyverse"),
dependencies = FALSE
) |>
tibble::as_tibble() |>
dplyr::mutate(Source = stringr::str_remove(source, "@\\w*")) |>
dplyr::select(Package = package, Version = ondiskversion, Source) |>
knitr::kable()
```
## An evolving book {-}
This book is not intended to be static. Starting in April 2019, we use this book to teach functional programming in the Stanford [Data Challenge Lab](https://datalab.stanford.edu/challenge-lab) (DCL) course. The DCL functions as a testing ground for educational materials, as our students give us routine feedback on what they read and do in the course. We use this feedback to constantly improve our materials, including this book. The [source for the book](https://github.com/dcl-docs/prog) is also available on GitHub where we welcome suggestions for improvements.
This work is licensed under a [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-nc-sa/4.0/).