Skip to content

Commit

Permalink
fixes schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
domonik committed Oct 18, 2024
1 parent f50e20a commit e4db06f
Show file tree
Hide file tree
Showing 18 changed files with 24 additions and 41 deletions.
28 changes: 13 additions & 15 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,22 +63,20 @@ episodes:
- 02-variables.md
- 03-types-conversion.md
- 04-built-in.md
- 05-coffee.md
- 06-libraries.md
- 07-reading-tabular.md
- 08-data-frames.md
- 09-plotting.md
- 10-lunch.md
- 11-lists.md
- 12-for-loops.md
- 13-conditionals.md
- 14-looping-data-sets.md
- 15-coffee.md
- 16-writing-functions.md
- 17-scope.md
- 18-style.md
- 19-wrap.md
- 20-feedback.md
- 07-lists.md
- 08-for-loops.md
- 09-conditionals.md
- 10-reading-tabular.md
- 11-data-frames.md
- 12-plotting.md
- 13-looping-data-sets.md
- 14-coffee.md
- 15-writing-functions.md
- 16-scope.md
- 17-style.md
- 18-wrap.md
- 19-feedback.md

# Information for Learners
learners:
Expand Down
2 changes: 1 addition & 1 deletion episodes/02-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ NameError: name 'last_name' is not defined
```

- The last line of an error message is usually the most informative.
- We will look at error messages in detail [later](17-scope.md#reading-error-messages).
- We will look at error messages in detail [later](16-scope.md#reading-error-messages).

::::::::::::::::::::::::::::::::::::::::: callout

Expand Down
2 changes: 1 addition & 1 deletion episodes/06-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ print(sample(bases, 1)[0])
```

Note that this function returns a list of values. We will learn about
lists in [episode 11](11-lists.md).
lists in [episode 11](07-lists.md).

The simplest and shortest solution is the [`random.choice`](https://docs.python.org/3/library/random.html#random.choice)
function that does exactly what we want:
Expand Down
2 changes: 1 addition & 1 deletion episodes/11-lists.md → episodes/07-lists.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ primes after removing last item: [2, 3, 5, 7]
- Use `[]` on its own to represent a list that doesn't contain any values.
- "The zero of lists."
- Helpful as a starting point for collecting values
(which we will see in the [next episode](12-for-loops.md)).
(which we will see in the [next episode](08-for-loops.md)).

## Lists may contain values of different types.

Expand Down
File renamed without changes.
File renamed without changes.
15 changes: 0 additions & 15 deletions episodes/10-lunch.md

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 8 additions & 8 deletions instructors/design.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ I know...
- If `help(math)` produces an error, what have you forgotten to do?
- Fill in the blanks in code below so that the import statement and program run.

### [Reading Tabular Data](../episodes/07-reading-tabular.md) (10:55)
### [Reading Tabular Data](../episodes/10-reading-tabular.md) (10:55)

- Teaching: 10 min
- Import the Pandas library.
Expand All @@ -224,7 +224,7 @@ I know...
- What string(s) should you pass to `read_csv` to read files from other directories?
- How can you *write* CSV data?

### [DataFrames](../episodes/08-data-frames.md) (11:15)
### [DataFrames](../episodes/11-data-frames.md) (11:15)

- Teaching: 15 min
- Select individual values from a Pandas dataframe.
Expand All @@ -243,7 +243,7 @@ I know...
what would you do if asked to create a table of GDP per capita for Poland
for the Twentieth Century?

### [Plotting](../episodes/09-plotting.md) (11:45)
### [Plotting](../episodes/12-plotting.md) (11:45)

- Teaching: 15 min
- Create a time series plot showing a single data set.
Expand All @@ -255,7 +255,7 @@ I know...

### [Lunch](../episodes/10-lunch.md) (12:15): 45 min

Check warning on line 256 in instructors/design.md

View workflow job for this annotation

GitHub Actions / Build Full Site

[missing file]: [Lunch](../episodes/10-lunch.md)

### [Lists](../episodes/11-lists.md) (13:00)
### [Lists](../episodes/07-lists.md) (13:00)

- Teaching: 10 min
- Explain why programs need collections of values.
Expand All @@ -269,7 +269,7 @@ I know...
- What are the differences between sorting these two ways?
- What is the difference between `new = old` and `new = old[:]`?

### [Loops](../episodes/12-for-loops.md) (13:20)
### [Loops](../episodes/08-for-loops.md) (13:20)

- Teaching: 10 min
- Explain what for loops are normally used for.
Expand Down Expand Up @@ -331,7 +331,7 @@ I know...
- Modify this program so that it always finds the largest and smallest values in a list
no matter what the list's values are.

### [Programming Style](../episodes/18-style.md) (15:25)
### [Programming Style](../episodes/17-style.md) (15:25)

- Teaching: 15 min
- How can I make my programs more readable?
Expand All @@ -342,14 +342,14 @@ I know...
- Turn the comments in this program into docstrings.
- Rewrite this short program to be more readable.

### [Wrap-Up](../episodes/19-wrap.md) (15:55)
### [Wrap-Up](../episodes/18-wrap.md) (15:55)

- Teaching: 20 min
- Name and locate scientific Python community sites for software, workshops, and help.
- Challenges: 0 min
- None.

### [Feedback](../episodes/20-feedback.md) (16:15)
### [Feedback](../episodes/19-feedback.md) (16:15)

- Teaching: 0 min
- Challenges: 15 min
Expand Down

0 comments on commit e4db06f

Please sign in to comment.