Skip to content

Commit

Permalink
Update README for this club.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthegeek committed Aug 16, 2023
1 parent 3ac8ab4 commit 4f05c6a
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# R4DS Python for Data Analysis Book Club
# R4DS Introduction to Statistical Learning Using Python Book Club

Welcome to the R4DS Python for Data Analysis Book Club!
Welcome to the R4DS Introduction to Statistical Learning Using Python Book Club!

We are working together to read [_Python for Data Analysis_](https://wesmckinney.com/book/) by Wes McKinney (O'Reilly Media, Inc., copyright 2022, [9781098104030](https://www.oreilly.com/library/view/python-for-data/9781098104023/)).
Join the [#book_club-py4da](https://rfordatascience.slack.com/archives/C03P2J90L30) channel on the [R4DS Slack](https://r4ds.io/join) to participate.
As we read, we are producing [notes about the book](https://r4ds.io/py4da).
We are working together to read [_Introduction to Statistical Learning Using Python_](https://www.statlearning.com) by Gareth James, Daniela Witten, Trevor Hastie, Rob Tibshirani, and Jonathan Taylor (Springer Science+Business Media, LLC, part of Springer Nature, copyright 2023, 978-3-031-38747-0).
Join the [#book_club-islp](https://rfordatascience.slack.com/archives/C05K1HJEXFA) channel on the [R4DS Slack](https://r4ds.io/join) to participate.
As we read, we are producing [notes about the book](https://r4ds.github.io/bookclub-islp/).

## Meeting Schedule

If you would like to present, please see the sign-up sheet for your cohort (linked below, and pinned in the [#book_club-py4da](https://rfordatascience.slack.com/archives/C03P2J90L30) channel on Slack)!
If you would like to present, please see the sign-up sheet for your cohort (linked below, and pinned in the [#book_club-islp](https://rfordatascience.slack.com/archives/C05K1HJEXFA) channel on Slack)!

- Cohort 1 (started 2022-08-05, finished 2022-11-11): [meeting videos](https://www.youtube.com/playlist?list=PL3x6DOfs2NGh7IQIQ_pXNkjLVKa-7lgCw)
- [Cohort 1](https://docs.google.com/spreadsheets/d/1mBCB3LM4GkCGvJuAGF12rUyyW1srk6fLjSzQvT0KuC0/edit?usp=sharing) (started 2023-08-13): [Sundays, noon CST/CDT](https://www.timeanddate.com/worldclock/converter.html?iso=20230813T170000&p1=24&p2=1440) | [meeting videos](https://youtube.com/playlist?list=PL3x6DOfs2NGgqCo62O0lDTcJLvGpyG8_g)

<hr>

Expand All @@ -20,18 +20,18 @@ This repository is made with [Quarto](https://quarto.org/).

To present, follow these instructions:

Do these steps once:
Do these steps once (steps need to be adapted somewhat for Python/Quarto still):

* [Setup Github Locally](https://www.youtube.com/watch?v=hNUNPkoledI) (also see [_Happy Git and GitHub for the useR_](https://happygitwithr.com/github-acct.html))
* Fork and clone this repository to your local computer.
* Install [Quarto](https://quarto.org/docs/get-started/) and follow the Get Started chapter.
1. [Setup Git and GitHub to work with RStudio](https://github.com/r4ds/bookclub-setup) (click through for detailed, step-by-step instructions; I recommend checking this out even if you're pretty sure you're all set).
2. Fork and clone this repository to your local computer.
3. Install [Quarto](https://quarto.org/docs/get-started/) and follow the Get Started chapter.

Do these steps each time you present another chapter:

* Open your project for this book.
* Create a new file in the folder. For example, to create a new file called `01_exercises.qmd`, navigate to the folder then run `touch 01_exercises.qmd` in the Terminal.
* Write in what you would like in the file.
* Then, in the `_quarto.yml` file, under chapters, add a section with your chapter. The file listed after `part` is the first page of chapter; the ones under chapters will be subpages.
1. Open your project for this book.
2. Create a new file in the folder. For example, to create a new file called `01_exercises.qmd`, navigate to the folder then run `touch 01_exercises.qmd` in the Terminal.
3. Write in what you would like in the file.
4. Then, in the `_quarto.yml` file, under chapters, add a section with your chapter. The file listed after `part` is the first page of chapter; the ones under chapters will be subpages.

```
- part: 01_main.qmd
Expand All @@ -41,18 +41,18 @@ Do these steps each time you present another chapter:
- 01_exercises.qmd
```

* Once you have added and edited your files, don’t forget to render the book. Run this in the terminal:
5. Once you have added and edited your files, don’t forget to render the book. Run this in the terminal:

```
quarto render --to html
```

Once you are ready to finalize your changes:

* Commit your changes.
* Push your changes to your forked repo and then create a pull request for the R4DS admins to merge your changes.
* (If they request changes, make them)
* When your PR has been accepted ("merged"), close out your branch and prepare your local repository for future work.
1. Commit your changes.
2. Push your changes to your forked repo and then create a pull request for the R4DS admins to merge your changes.
3. (If they request changes, make them)
4. When your PR has been accepted ("merged"), close out your branch and prepare your local repository for future work.

## On Using Quarto

Expand Down

0 comments on commit 4f05c6a

Please sign in to comment.