Skip to content

Commit c785ca1

Browse files
committed
differences for PR #636
1 parent 8fb82e9 commit c785ca1

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

00-before-we-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ when you have multiple projects. In general, you may wish to create separate dir
102102
your scripts, data, and documents.
103103

104104
- **`data/`**: Use this folder to store your raw data. For the sake of transparency and provenance,
105-
you should always keep a copy of your **raw data**. If you need to cleanup data, do it
105+
you should always keep a copy of your **raw data**. If you need to clean up data, do it
106106
programmatically (*i.e.* with scripts) and make sure to separate cleaned up data from the raw data.
107107
For example, you can store raw data in files `./data/raw/` and clean data in `./data/clean/`.
108108

04-data-types-and-format.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,14 +348,14 @@ df1['weight'].mean()
348348
38.751976145601844
349349
```
350350

351-
We can fill `NaN` values with any value that we chose. The code below fills all
351+
We can fill `NaN` values with any value that we choose. The code below fills all
352352
`NaN` values with a mean for all weight values.
353353

354354
```python
355355
df1['weight'] = surveys_df['weight'].fillna(surveys_df['weight'].mean())
356356
```
357357

358-
We could also chose to create a subset of our data, only keeping rows that do
358+
We could also choose to create a subset of our data, only keeping rows that do
359359
not contain `NaN` values.
360360

361361
The point is to make conscious decisions about how to manage missing data. This

06-loops-and-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ AND the file name itself.
325325

326326
2. Let's say you only want to look at data from a given multiple of years. How would you modify your loop in order to generate a data file for only every 5th year, starting from 1977?
327327

328-
3. Instead of splitting out the data by years, a colleague wants to do analyses each species separately. How would you write a unique CSV file for each species?
328+
3. Instead of splitting out the data by years, a colleague wants to do analyses of each species separately. How would you write a unique CSV file for each species?
329329

330330
::::::::::::::::::::::: solution
331331

09-working-with-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ exercises: 25
2323
## Python and SQL
2424

2525
When you open a CSV in python, and assign it to a variable name, you are using
26-
your computers memory to save that variable. Accessing data from a database like
26+
your computer's memory to save that variable. Accessing data from a database like
2727
SQL is not only more efficient, but also it allows you to subset and import only
2828
the parts of the data that you need.
2929

@@ -225,7 +225,7 @@ con.close()
225225
results to their own tables in the portal database.
226226

227227
2. What are some of the reasons you might want to save the results of your queries back into the
228-
database? What are some of the reasons you might avoid doing this.
228+
database? What are some of the reasons you might avoid doing this?
229229

230230
::::::::::::::::::::::: solution
231231

md5sum.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
"config.yaml" "946dead19469d7d939e4f00f5535f8ae" "site/built/config.yaml" "2023-05-08"
55
"index.md" "8f7fa3b751da8ba42a26fe9a7874d625" "site/built/index.md" "2023-05-08"
66
"links.md" "5903e1cd6cbed862b0e43e887d32e46d" "site/built/links.md" "2023-05-08"
7-
"episodes/00-before-we-start.md" "2b40f74a13b0b9b370519bed0ba50cf1" "site/built/00-before-we-start.md" "2025-05-29"
7+
"episodes/00-before-we-start.md" "ea73df20140c0901824a9a1eefb8cdbc" "site/built/00-before-we-start.md" "2026-04-06"
88
"episodes/01-short-introduction-to-Python.md" "c94d05a1efb9a917e75dcd56ad344862" "site/built/01-short-introduction-to-Python.md" "2024-02-21"
99
"episodes/02-starting-with-data.md" "7aae8d49ef03e5c65d66cc0104ddbf10" "site/built/02-starting-with-data.md" "2024-02-23"
1010
"episodes/03-index-slice-subset.md" "3085c53ba22bacb5ecf486aedefa4a8c" "site/built/03-index-slice-subset.md" "2025-04-29"
11-
"episodes/04-data-types-and-format.md" "e57b9b771e5d2dcf4c9e2521822f8d5a" "site/built/04-data-types-and-format.md" "2023-06-05"
11+
"episodes/04-data-types-and-format.md" "03d10498eb47663e0979a6be2628229e" "site/built/04-data-types-and-format.md" "2026-04-06"
1212
"episodes/05-merging-data.md" "8491d51a41ad970f69acac6162e97432" "site/built/05-merging-data.md" "2024-02-21"
13-
"episodes/06-loops-and-functions.md" "d41f11e6c162c86393cd9bd4431c0687" "site/built/06-loops-and-functions.md" "2023-05-18"
13+
"episodes/06-loops-and-functions.md" "09098801cd5e3bab43f1d719a528059e" "site/built/06-loops-and-functions.md" "2026-04-06"
1414
"episodes/07-visualization-ggplot-python.md" "be85fc2fd560b30bee0818ecf4a4e712" "site/built/07-visualization-ggplot-python.md" "2024-03-29"
1515
"episodes/08-putting-it-all-together.md" "b279a4ab47789abda7f71609a78022ed" "site/built/08-putting-it-all-together.md" "2024-01-31"
16-
"episodes/09-working-with-sql.md" "e27af594f7ae68613dbaae8240493770" "site/built/09-working-with-sql.md" "2023-05-18"
16+
"episodes/09-working-with-sql.md" "b69ad61f621c4b9935ea872e6e6e3d35" "site/built/09-working-with-sql.md" "2026-04-06"
1717
"instructors/CONTRIBUTORS.md" "71ca6d2e0d81004775e42ce90cd6a298" "site/built/CONTRIBUTORS.md" "2023-05-08"
1818
"instructors/extra_challenges.md" "38b0d3016d4045f9d621c2cc267c72d6" "site/built/extra_challenges.md" "2023-05-18"
1919
"instructors/instructor-notes.md" "a3b921e91514156550fb850d42e90f80" "site/built/instructor-notes.md" "2023-05-19"

0 commit comments

Comments
 (0)