Skip to content

Commit

Permalink
chore(sync): 🔨 synced local '_extensions/rostools/r3-theme/' with rem…
Browse files Browse the repository at this point in the history
…ote '_extensions/r3-theme/'
  • Loading branch information
lwjohnst86 committed Feb 14, 2025
1 parent 12c3d15 commit 806cac0
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
19 changes: 19 additions & 0 deletions _extensions/rostools/r3-theme/includes/reading-website-r.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
We will explain this a bit during the course, but read this to start
learning how the website is structured and how to read certain things.
Specifically, there are a few "syntax" type formatting of the text in
this website to be aware of:

- Folder names always end with a `/`, for example `data/` means the
data folder.
- File names always end with their file extension, for example `content.md`
means the file is a Markdown file.
- R variables are always shown as is. For instance, for the code
`x <- 10`, `x` is a variable because it was assigned with 10.
- Functions always end with `()`, for instance `mean()` or
`read_csv()`.
- Sometimes functions have their package name appended with `::` to
indicate to run the code from the specific package, since we likely
haven't loaded the package with `library()`. For instance, to
install packages from GitHub using the `{pak}` package we use
`pak::pkg_install("user/packagename")`. You'll learn about this more
later.
9 changes: 9 additions & 0 deletions _extensions/rostools/r3-theme/includes/reading-website.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
We will explain this a bit during the lessons, but read this to start
learning how the website is structured and how to read certain things.
Specifically, there are a few "syntax" type formatting of the text in
this website to be aware of:

- Folder names always end with a `/`, for example `data/` means the
data folder.
- File names always end with their file extension, for example `content.md`
means the file is a Markdown file.

0 comments on commit 806cac0

Please sign in to comment.