From 80042e5906bfb2f07cccd4cff48dc7cc0a95ecc1 Mon Sep 17 00:00:00 2001 From: Naupaka Zimmerman Date: Fri, 19 Jan 2024 11:13:55 -0800 Subject: [PATCH] Update to include additional style guides per #154 --- episodes/01-r-basics.Rmd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/episodes/01-r-basics.Rmd b/episodes/01-r-basics.Rmd index d1acdc15..a0ae7ca9 100644 --- a/episodes/01-r-basics.Rmd +++ b/episodes/01-r-basics.Rmd @@ -202,7 +202,9 @@ Here are some important details about naming objects in R. There are a few more suggestions about naming and style you may want to learn more about as you write more R code. There are several "style guides" that -have advice, and one to start with is the [tidyverse R style guide](https://style.tidyverse.org/index.html). +have advice. One of the more widely used is the [tidyverse R style guide](https://style.tidyverse.org/index.html), +but there is also a [Google R style guide](https://google.github.io/styleguide/Rguide.html), and +[Jean Fan's R style guide](https://jef.works/R-style-guide/), among others. ::::::::::::::::::::::::::::::::::::::::: callout