commit 548298c5ef6c1ff4c8813b9c8698645b786438a6
parent 81a346feb22d44d3471856df5fe14f024447c6e9
Author: Jon Harmon <jonthegeek@gmail.com>
Date: Thu, 4 Apr 2024 14:40:00 -0500
R4DS to DSLC (#59)
Diffstat:
4 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/24_Improving_performance.Rmd b/24_Improving_performance.Rmd
@@ -36,7 +36,7 @@ bench::mark(
- Google (rseek)
- Stackoverflow ([R])
- https://community.rstudio.com/
- - R4DS community
+ - DSLC community
## Do as little as possible
- use a function tailored to a more specific type of input or output, or to a more specific problem
@@ -239,7 +239,7 @@ stopifnot(all.equal(t1, t3))
* Read general books about optimisation like Mature optimisation
or the Pragmatic Programmer
-* Read more R code. StackOverflow, R Mailing List, R4DS, GitHub, etc.
+* Read more R code. StackOverflow, R Mailing List, DSLC, GitHub, etc.
## Meeting Videos
diff --git a/DESCRIPTION b/DESCRIPTION
@@ -3,7 +3,7 @@ Title: Advanced R Book Club
Version: 0.0.1
Authors@R: c(
person(
- "R4DS Online Learning Community",
+ "Data Science Learning Community",
email = "rfordatasci@gmail.com",
role = c("aut", "cre", "cph")
)
diff --git a/README.md b/README.md
@@ -1,10 +1,10 @@
-# R4DS Advanced R Book Club
+# DSLC Advanced R Book Club
-Welcome to the R4DS Advanced R Book Club!
+Welcome to the DSLC Advanced R Book Club!
We are working together to read [_Advanced R_](https://adv-r.hadley.nz/) by Hadley Wickham (Chapman & Hall, copyright 2019, [9780815384571](https://www.routledge.com/Advanced-R-Second-Edition/Wickham/p/book/9780815384571)).
-Join the [#book_club-advr](https://rfordatascience.slack.com/archives/C010GJ3VAE5) channel on the [R4DS Slack](https://r4ds.io/join) to participate.
-As we read, we are producing [notes about the book](https://r4ds.io/advr).
+Join the [#book_club-advr](https://rfordatascience.slack.com/archives/C010GJ3VAE5) channel on the [DSLC Slack](https://dslc.io/join) to participate.
+As we read, we are producing [notes about the book](https://dslc.io/advr).
## Meeting Schedule
@@ -48,4 +48,4 @@ Do these steps each time you present another chapter:
10. When your PR has been accepted ("merged"), `usethis::pr_finish()` to close out your branch and prepare your local repository for future work.
11. Now that your local copy is up-to-date with the main repo, you need to update your remote fork. Run `gert::git_push("origin")` or click the `Push` button on the `Git` tab of Rstudio.
-When your PR is checked into the main branch, the bookdown site will rebuild, adding your slides to [this site](https://r4ds.io/advr).
+When your PR is checked into the main branch, the bookdown site will rebuild, adding your slides to [this site](https://dslc.io/advr).
diff --git a/index.Rmd b/index.Rmd
@@ -1,6 +1,6 @@
---
title: "Advanced R Book Club"
-author: "The R4DS Online Learning Community"
+author: "The Data Science Learning Community"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
documentclass: book
@@ -8,7 +8,7 @@ bibliography: book.bib
biblio-style: apalike
link-citations: yes
github-repo: r4ds/bookclub-advr
-description: "This is the product of the R4DS Online Learning Community's Advanced R Book Club."
+description: "This is the product of the Data Science Learning Community's Advanced R Book Club."
---
# Welcome {-}
@@ -25,11 +25,11 @@ knitr::opts_chunk$set(
Welcome to the bookclub!
This is a companion for the book [_Advanced R_](https://adv-r.hadley.nz/) by Hadley Wickham (Chapman & Hall, copyright 2019, [9780815384571](https://www.routledge.com/Advanced-R-Second-Edition/Wickham/p/book/9780815384571)).
-This companion is available at [r4ds.io/advr](https://r4ds.io/advr).
+This companion is available at [dslc.io/advr](https://dslc.io/advr).
-This website is being developed by the [R4DS Online Learning Community](https://rfordatasci.com). Follow along, and [join the community](https://r4ds.io/join) to participate.
+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 [R4DS Online Learning Community Code of Conduct](https://r4ds.io/conduct).
+This companion follows the [Data Science Learning Community Code of Conduct](https://dslc.io/conduct).
## Book club meetings {-}
@@ -37,7 +37,7 @@ This companion follows the [R4DS Online Learning Community Code of Conduct](http
- **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-advr).
-- Presentations will be recorded, and will be available on the [R4DS Online Learning Community YouTube Channel](https://r4ds.io/youtube).
+- Presentations will be recorded, and will be available on the [Data Science Learning Community YouTube Channel](https://dslc.io/youtube).
- Camera is optional, but encouraged.
- If we need to slow down and discuss, let me or the speaker know.
- A lot can be learned from a discussion.
@@ -73,7 +73,7 @@ This companion follows the [R4DS Online Learning Community Code of Conduct](http
- If you're comforable with `git` and `GitHub`:
- Fork the repo.
- Create a branch with an informative name.
- - Submit a pull request via the `R4DS` repo of the book.
+ - Submit a pull request via the `DSLC` repo of the book.
- PR's are automatically tested and reviewed before being merged.
## Resources to learn more about `git` and GitHub {-}