Skip to content

r4ds/bookclub-islp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DSLC Introduction to Statistical Learning Using Python Book Club

Welcome to the DSLC Introduction to Statistical Learning Using Python Book Club!

We are working together to read Introduction to Statistical Learning Using Python 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 channel on the DSLC Slack to participate. As we read, we are producing notes about the book.

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-islp channel on Slack)!


How to Present

This repository is made with Quarto.

To present, follow these instructions:

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

  1. Setup Git and GitHub to work with RStudio (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 and follow the Get Started chapter.

Do these steps each time you present another chapter:

  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
      chapters: 
      - 01_notes.qmd
      - 01_video.qmd
      - 01_exercises.qmd
  1. 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:

  1. Commit your changes.
  2. Push your changes to your forked repo and then create a pull request for the DSLC 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

Quarto is an open-source scientific and technical publishing system built on Pandoc.

You can weave together narrative text and code to produce elegantly formatted output. Quarto documents are fully reproducible. You can use plain .md files, Quarto .qmd, or Jupyter .ipynb files. Check out the files under Examples to see the various options.