-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(sync): 🔨 synced local '_extensions/rostools/r3-theme/' with rem…
…ote '_extensions/r3-theme/'
- Loading branch information
1 parent
12c3d15
commit 806cac0
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
_extensions/rostools/r3-theme/includes/reading-website-r.qmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |