-
Notifications
You must be signed in to change notification settings - Fork 32
/
index.Rmd
35 lines (28 loc) · 1.58 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
---
title: "Tidy Modeling with R Book Club"
author: "The Data Science Learning Community"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
documentclass: book
bibliography: book.bib
biblio-style: apalike
link-citations: yes
github-repo: r4ds/bookclub-tmwr
description: "This is the product of the Data Science Learning Community's Tidy Modeling with R Book Club."
---
# Welcome {-}
This is a companion for the book [Tidy Modeling with R](https://www.tmwr.org/) by Max Kuhn and Julia Silge.
This companion is available at [dslc.io/tmwr](https://dslc.io/tmwr).
This website is being developed by the [Data Science Learning Community](https://dslc.io). Follow along, and [join the community](https://dslc.io/join) to participate.
This companion follows the [Data Science Learning Community Code of Conduct](https://dslc.io/conduct).
## Book club meetings {-}
- Each week, a volunteer will present a chapter from the book.
- **This is the best way to learn the material.**
- Presentations will usually consist of a review of the material, a discussion, and/or a demonstration of the principles presented in that chapter.
- More information about how to present is available in the [github repo](https://github.com/r4ds/bookclub-tmwr).
- Presentations will be recorded, and will be available on the [Data Science Learning Community YouTube Channel](https://dslc.io/youtube).
```{r set-conflict-prefs, include=FALSE}
# There are some conflicts that can come up easily. Let's handle them up front.
conflicted::conflict_prefer("filter", "dplyr")
conflicted::conflict_prefer("penguins", "palmerpenguins")
```