Skip to content

Commit

Permalink
Schedule update
Browse files Browse the repository at this point in the history
  • Loading branch information
nt246 committed Oct 4, 2024
1 parent 2349f42 commit d8a23d2
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 28 deletions.
10 changes: 2 additions & 8 deletions analysis/lesson12-relational-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,7 @@ Jenny Bryan's [STAT545 Chapter 14 When one tibble is not enough](https://stat545

## Plan for today and learning objectives

<br>

First, we'll finish talking about data export (wrap up of lecture 11 from last week) and recap on how to save data and plots.

<br>

Then we'll switch gears to talk about relational data. By the end of today's class, you should be able to:
Today we'll talk about relational data. By the end of today's class, you should be able to:

* Combine information from multiple tables into one
* Describe the difference between the four `join` and two `filter` functions in `dplyr`
Expand All @@ -66,7 +60,7 @@ library(tidyverse)

<br>

Today, we will be practicing joins on data on flights departing NYC in 2013. These data are compiled in a package that we will install and load
We will be practicing joins on data on flights departing NYC in 2013. These data are compiled in a package that we will install and load
```{r, eval = FALSE}
install.packages("nycflights13")
Expand Down
8 changes: 4 additions & 4 deletions analysis/syllabus.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,13 @@ This semester, the course is offered fully in-person and we expect you to show u
|10|Thu|9/26|[Tidy data](https://nt246.github.io/NTRES-6100-data-science/lesson10-tidy-data.html)|[Assignment 4](https://github.com/nt246/NTRES-6100-data-science/blob/main/assignments/assignment_4.md)|
|11|Tue|10/1|[Data import, export, and conversion between data types](https://nt246.github.io/NTRES-6100-data-science/lesson11-data-import-and-types.html)|||
|12|Thu|10/3|[Relational data](https://nt246.github.io/NTRES-6100-data-science/lesson11-data-import-and-types.html)|[Assignment 5](https://github.com/nt246/NTRES-6100-data-science/blob/main/assignments/assignment_5.md)|
|13|Tue|10/8|[Good coding practices, debugging strategies, and getting help](https://nt246.github.io/NTRES-6100-data-science/lesson12-relational-data.html)||
|14|Thu|10/10|[Iteration (for loops) and conditional execution part 1](https://nt246.github.io/NTRES-6100-data-science/lesson13-debugging-getting-help.html)|[Assignment 6](https://github.com/nt246/NTRES-6100-data-science/blob/main/assignments/assignment_6.md)|
|13|Tue|10/8|[Iteration (for loops) and conditional execution part 1](https://nt246.github.io/NTRES-6100-data-science/lesson13-debugging-getting-help.html)||
|14|Thu|10/10|[Iteration (for loops) and conditional execution part 2](https://nt246.github.io/NTRES-6100-data-science/lesson15-for-loops-part2.html)|[Assignment 6](https://github.com/nt246/NTRES-6100-data-science/blob/main/assignments/assignment_6.md)|
||Tue|10/15|FALL BREAK (no class)|||
|15|Thu|10/17|[Iteration (for loops) and conditional execution part 2](https://nt246.github.io/NTRES-6100-data-science/lesson15-for-loops-part2.html)|[Assignment 7](https://github.com/nt246/NTRES-6100-data-science/blob/main/assignments/assignment_7.md)|
|15|Thu|10/17|[Good coding practices, debugging strategies, and getting help](https://nt246.github.io/NTRES-6100-data-science/lesson12-relational-data.html)|[Assignment 7](https://github.com/nt246/NTRES-6100-data-science/blob/main/assignments/assignment_7.md)|
|16|Tue|10/22|[Functions](https://nt246.github.io/NTRES-6100-data-science/lesson16-functions.html)||
|17|Thu|10/24|[Factors in R](https://nt246.github.io/NTRES-6100-data-science/lesson17-factors.html)|[Assignment 8](https://github.com/nt246/NTRES-6100-data-science/blob/main/assignments/assignment_8.md)|
|18|Tue|10/29|TBD (using ChatGPT) |||
|18|Tue|10/29|TBD |||
|19|Thu|10/31|Student presentations, wrapping up and looking ahead|[Assignment 9](https://github.com/nt246/NTRES-6100-data-science/blob/main/assignments/assignment_9.md)|
|20|Tue|11/5|[Wrapping up and resources for learning more](https://nt246.github.io/NTRES-6100-data-science/lesson18-wrapup.html)|

Expand Down
13 changes: 4 additions & 9 deletions docs/lesson12-relational-data.html
Original file line number Diff line number Diff line change
Expand Up @@ -490,12 +490,8 @@ <h2>Announcements</h2>
</div>
<div id="plan-for-today-and-learning-objectives" class="section level2">
<h2>Plan for today and learning objectives</h2>
<p><br></p>
<p>First, we’ll finish talking about data export (wrap up of lecture 11
from last week) and recap on how to save data and plots.</p>
<p><br></p>
<p>Then we’ll switch gears to talk about relational data. By the end of
today’s class, you should be able to:</p>
<p>Today we’ll talk about relational data. By the end of today’s class,
you should be able to:</p>
<ul>
<li>Combine information from multiple tables into one</li>
<li>Describe the difference between the four <code>join</code> and two
Expand All @@ -510,9 +506,8 @@ <h2>Setup</h2>
<p>Load the tidyverse</p>
<pre class="r"><code>library(tidyverse)</code></pre>
<p><br></p>
<p>Today, we will be practicing joins on data on flights departing NYC
in 2013. These data are compiled in a package that we will install and
load</p>
<p>We will be practicing joins on data on flights departing NYC in 2013.
These data are compiled in a package that we will install and load</p>
<pre class="r"><code>install.packages(&quot;nycflights13&quot;)
library(nycflights13) # install.packages(&quot;nycflights13&quot;)</code></pre>
<p><br> <br></p>
Expand Down
14 changes: 7 additions & 7 deletions docs/syllabus.html
Original file line number Diff line number Diff line change
Expand Up @@ -777,17 +777,17 @@ <h4>Tentative schedule</h4>
<td align="left">Tue</td>
<td align="left">10/8</td>
<td align="left"><a
href="https://nt246.github.io/NTRES-6100-data-science/lesson12-relational-data.html">Good
coding practices, debugging strategies, and getting help</a></td>
href="https://nt246.github.io/NTRES-6100-data-science/lesson13-debugging-getting-help.html">Iteration
(for loops) and conditional execution part 1</a></td>
<td align="left"></td>
</tr>
<tr class="even">
<td align="left">14</td>
<td align="left">Thu</td>
<td align="left">10/10</td>
<td align="left"><a
href="https://nt246.github.io/NTRES-6100-data-science/lesson13-debugging-getting-help.html">Iteration
(for loops) and conditional execution part 1</a></td>
href="https://nt246.github.io/NTRES-6100-data-science/lesson15-for-loops-part2.html">Iteration
(for loops) and conditional execution part 2</a></td>
<td align="left"><a
href="https://github.com/nt246/NTRES-6100-data-science/blob/main/assignments/assignment_6.md">Assignment
6</a></td>
Expand All @@ -804,8 +804,8 @@ <h4>Tentative schedule</h4>
<td align="left">Thu</td>
<td align="left">10/17</td>
<td align="left"><a
href="https://nt246.github.io/NTRES-6100-data-science/lesson15-for-loops-part2.html">Iteration
(for loops) and conditional execution part 2</a></td>
href="https://nt246.github.io/NTRES-6100-data-science/lesson12-relational-data.html">Good
coding practices, debugging strategies, and getting help</a></td>
<td align="left"><a
href="https://github.com/nt246/NTRES-6100-data-science/blob/main/assignments/assignment_7.md">Assignment
7</a></td>
Expand Down Expand Up @@ -833,7 +833,7 @@ <h4>Tentative schedule</h4>
<td align="left">18</td>
<td align="left">Tue</td>
<td align="left">10/29</td>
<td align="left">TBD (using ChatGPT)</td>
<td align="left">TBD</td>
<td align="left"></td>
</tr>
<tr class="even">
Expand Down
Binary file modified slides/Slides_lesson13_relational_data.pdf
Binary file not shown.
Binary file removed slides/~$Slides_tidydata.pptx
Binary file not shown.

0 comments on commit d8a23d2

Please sign in to comment.