Skip to content

Commit e79ad74

Browse files
broken link fixes
1 parent 6ad7792 commit e79ad74

File tree

3 files changed

+24
-25
lines changed

3 files changed

+24
-25
lines changed

Extras.qmd

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ format:
1010

1111
Welcome to the **Bonus lessons** page. Below are two extra chapters you can explore:
1212

13-
---
13+
------------------------------------------------------------------------
1414

1515
## Bonus: Git and GitHub
1616

1717
Learn how to create a GitHub account, set up Git on your computer, and start version-controlling your projects. This guide will walk you through:
1818

19-
- Registering for GitHub
20-
- Installing and configuring Git
21-
- Your first commit and push
19+
- Registering for GitHub\
20+
- Installing and configuring Git\
21+
- Your first commit and push
2222

23-
[Go to Bonus: Git and GitHub](bonus-git-and-github.html)
23+
[Go to Bonus: Git and GitHub](bonus-git-and-github.qmd)
2424

25-
---
25+
------------------------------------------------------------------------
2626

2727
## Alternative Data Wrangling (Class 6 Old Version)
2828

2929
This is an alternate take on **Data Wrangling Day 2**, covering the same concepts with a slightly different workflow and examples. It’s great if you want more practice or a different perspective.
3030

31-
[Go to Class 6 (Old Version)](class6_old.html)
31+
[Go to Class 6 (Old Version)](class6_old.qmd)

README.md

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,16 @@
22

33
We are an organization that hopes to make learning to program approachable, accessible, and effective. We want to improve rigor and reproducibility in science by providing programming resources and experiences to scientists and professionals in all levels of their careers. Our classes are small-group based courses with a teacher:student ratio that allows the students to learn dynamically and independently. During classes, students are able to follow along with the teacher leading the instruction, or work with one of our floating teachers to troubleshoot or to better understand their own code.
44

5-
This is our curriculum for learning R programming in the context of data analysis. Our curriculum development team has worked tirelessly to develop this new curriculum for the Summer of 2024. We are constantly improving and updating our curricula, so if you're interested in contributing or have suggestions, please visit <https://howtolearntocode.web.unc.edu/> for our most up-to-date contact information. If you have gotten to our Class 7 over Github, or are proficient in Github yourself, feel free to submit an issue or pull request at <https://github.com/How-to-Learn-to-Code/Rclass-DataScience>.
5+
This is our curriculum for learning R programming in the context of data analysis. Our curriculum development team has worked tirelessly to develop this new curriculum for the Summer of 2024. We are constantly improving and updating our curricula, so if you're interested in contributing or have suggestions, please visit <https://howtolearntocode.web.unc.edu/> for our most up-to-date contact information. If you have gotten to our lesson Github, or are proficient in Github yourself, feel free to submit an issue or pull request at <https://github.com/How-to-Learn-to-Code/Rclass-DataScience>.
66

7-
| Class Day | Topic | Link |
7+
| Class Day | Topic | Link |
88
|:----------------------:|:----------------------:|:----------------------:|
9-
| 0 | Welcome to How to Learn to Code! | [Introduction](class0.qmd) |
10-
| 1 | R Coding Basics | [Coding Basics 1](class1.qmd) |
11-
| 2 | Applying Coding Basics | [Coding Basics 2](class2.qmd) |
12-
| 3 | Let's Get Plotting! | [Data Visualization 1](class3.qmd) |
13-
| 4 | Applying Visualization Methods | [Data Vizualization 2](class4.qmd) |
14-
| 5 | Data Wrangling Basics | [Data Wrangling 1](class5.qmd) |
15-
| 6 | Data Wrangling with Real Experimental Data | [Data Wrangling 2](class6.qmd) |
16-
| 7 | Running a Reproducible Analysis | [Project 1](class7.qmd) |
17-
| 8 | Practicing on Real World Data | [Project 2](class8.qmd) |
18-
19-
: Table of Contents
20-
9+
| 0 | Welcome to How to Learn to Code! | [Introduction](class0.qmd) |
10+
| 1 | R Coding Basics | [Coding Basics 1](class1.qmd) |
11+
| 2 | Applying Coding Basics | [Coding Basics 2](class2.qmd) |
12+
| 3 | Let's Get Plotting! | [Data Visualization 1](class3.qmd) |
13+
| 4 | Applying Visualization Methods | [Data Visualization 2](class4.qmd) |
14+
| 5 | Data Wrangling Basics | [Data Wrangling 1](class5.qmd) |
15+
| 6 | Applying Data Wrangling Basics | [Data Wrangling 2](class6.qmd) |
16+
| 7 | Practicing on Real World Data | [Project 1](class7.qmd) |
17+
| 8 | Bonus Lessons | [Bonus Lessons](Extras.qmd) |

class6.qmd

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Data Wrangling with Real World Data"
2+
title: "Applying Data Wrangling Skills"
33
subtitle: "Data Wrangling, Day 2 (Tour de France edition)"
44
author: "Madeline Gillman & Austin Daigle"
55
format:
@@ -71,7 +71,7 @@ Let's read in the data and dig in!
7171
7272
rider_hx <- read_csv("https://raw.githubusercontent.com/How-to-Learn-to-Code/Rclass-DataScience/main/data/wrangling-files/TDF_Riders_History_1919-2023.csv")
7373
74-
stage_hx <- read_csv("https://raw.githubusercontent.com/How-to-Learn-to-Code/Rclass-DataScience/main/data/wrangling-files/TDF_Stages_History_1919-2023")
74+
stage_hx <- read_csv("https://raw.githubusercontent.com/How-to-Learn-to-Code/Rclass-DataScience/main/data/wrangling-files/TDF_Stages_History_1919-2023.csv")
7575
7676
```
7777

@@ -103,13 +103,15 @@ Read in the dataset.
103103

104104
```{r}
105105
106-
tdf_2024_df <- read_csv("https://raw.githubusercontent.com/How-to-Learn-to-Code/Rclass-DataScience/main/data/wrangling-files/tdf_2024_stage13_data")
106+
tdf_2024_df <- read_csv("https://raw.githubusercontent.com/How-to-Learn-to-Code/Rclass-DataScience/main/data/wrangling-files/tdf_2024_stage13_data.csv")
107107
```
108108

109109
1. Try using `rbind()`, `bind_rows()` , and `merge()` to join the new data with the rider history data from above. Which one(s), if any, work? Why do you think they do (or do not) work?
110110
2. If you need to make any modifications to the new data to enable a join, do so and then join the datasets. Make these changes in R, NOT Excel or a text editor. Doing so in R ensures that your changes are *reproducible* and that the original data is not destroyed or modified.
111111
3. Use this new dataset to add this year's average speed to the same plots you made in Part 1.
112-
4. Review your code from Parts 1 and 2. See if you can use pipes to connect as many steps as possible. As you do this, make sure you add comments to your code and consider if using too many pipes sacrifices code readability.
112+
4. Write this new dataset to a new comma-separated file. See if you can write the file using one of these functions: `write.csv()`, `write_csv()`, and `write.table()`. Use the help pages for each of the functions to explore the difference between each. Which one will you probably use the most in your own analyses?
113+
a. Verify you can view this file using the file explorer on OnDemand, and download to your computer. If the file does not look like you expected, review the help pages for the function you used.
114+
5. Review your code from Parts 1 and 2. See if you can use pipes to connect as many steps as possible. As you do this, make sure you add comments to your code and consider if using too many pipes sacrifices code readability.
113115

114116
## Part 3: Stage History
115117

0 commit comments

Comments
 (0)