Why are my changes not taking effect? Itβs making my results look
Here we are creating a new object from an existing one:
new_rivers <- sample(rivers, 5)
new_rivers
-## [1] 605 435 300 696 680
+## [1] 202 215 260 375 300
Using just this will only print the result and not actually change new_rivers
:
new_rivers + 1
-## [1] 606 436 301 697 681
+## [1] 203 216 261 376 301
If we want to modify new_rivers
and save that modified version, then we need to reassign new_rivers
like so:
new_rivers <- new_rivers + 1
new_rivers
-## [1] 606 436 301 697 681
+## [1] 203 216 261 376 301
If we forget to reassign this can cause subsequent steps to not work as expected because we will not be working with the data that has been modified.
@@ -406,7 +406,7 @@ Error: object βXβ not found
Make sure you run something like this, with the <-
operator:
rivers2 <- new_rivers + 1
rivers2
-## [1] 607 437 302 698 682
+## [1] 204 217 262 377 302
diff --git a/index.html b/index.html
index 05e111d4..1c5838b1 100644
--- a/index.html
+++ b/index.html
@@ -348,7 +348,7 @@
Testimonials from our other courses:
Find an Error!?
Feel free to submit typos/errors/etc via the GitHub repository associated with the class: https://github.com/fhdsl/DaSEH
-
This page was last updated on 2024-09-26.
+
This page was last updated on 2024-09-27.
diff --git a/modules/Intro/Intro.Rmd b/modules/Intro/Intro.Rmd
index 258984de..93f6b63e 100644
--- a/modules/Intro/Intro.Rmd
+++ b/modules/Intro/Intro.Rmd
@@ -278,11 +278,11 @@ More on that soon!
## Summary
-π [Class Website - https://daseh.org/](https://daseh.org/) - Logistics, resources, and help!
+π [Class Website - `https://daseh.org/`](https://daseh.org/) - Logistics, resources, and help!
-π [Research Survey](https://forms.gle/vxp8vxdN2Ck2j7uY6)
+π [Research Survey - `https://forms.gle/vxp8vxdN2Ck2j7uY6`](https://forms.gle/vxp8vxdN2Ck2j7uY6)
-π©Ί [Pulse Check](%60r%20config::get(%22google_survey%22)%60)
+π©Ί [Pulse Check - `r config::get("google_survey")`](`r config::get("google_survey")`)
## Summary
diff --git a/modules/Intro/Intro.html b/modules/Intro/Intro.html
index 326baf94..60a50efa 100644
--- a/modules/Intro/Intro.html
+++ b/modules/Intro/Intro.html
@@ -358,11 +358,11 @@
Summary
-π Class Website - https://daseh.org/ - Logistics, resources, and help!
+π Class Website - https://daseh.org/
- Logistics, resources, and help!
-π Research Survey
+π Research Survey - https://forms.gle/vxp8vxdN2Ck2j7uY6
-π©Ί Pulse Check
+π©Ί Pulse Check - https://forms.gle/JAsLbyRDtCtxwgFG9
Summary
diff --git a/modules/Intro/Intro.pdf b/modules/Intro/Intro.pdf
index c503b96a..c7e0bd3f 100644
Binary files a/modules/Intro/Intro.pdf and b/modules/Intro/Intro.pdf differ