Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion episodes/01-format-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ We're going to take a messy version of some library training data and clean it u

## Important

Do not forget of our first piece of advice:
Do not forget our first piece of advice:
**create a new file** for the cleaned data, and **never
modify the original (raw) data**.

Expand Down
2 changes: 1 addition & 1 deletion episodes/03-dates-as-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ sure that we are adding the amount to the correct entity.
- Finally the complete date string is reconstructed using the `DATE()` function.

**Note:** Time values raise similar challenges. Seconds can be directly
added but to add hour and minutes you will need to make sure
added but to add hours and minutes you will need to make sure
that quantities are added to the correct entities.

## Advantages of Alternative Date Formatting
Expand Down
2 changes: 1 addition & 1 deletion episodes/04-quality-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ keyboard) should never be entered. Likewise if one of the kinds of data being
collected is a count, only integers greater than or equal to zero should be
allowed.

To control the kind of data entered into a a spreadsheet we use Data Validation
To control the kind of data entered into a spreadsheet we use Data Validation
(Excel) or Validity (LibreOffice Calc), to set the values that can be entered
in each data column.

Expand Down