Skip to content

Commit 19fb534

Browse files
committed
update README.md-s with student outcomes
1 parent c785d0b commit 19fb534

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

lecture05-graphs-basics/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Case studies used/related in/to this lecture:
3232
## Learning outcomes
3333
After completing [`plotnine_intro.ipynb`](https://github.com/gabors-data-analysis/da-coding-python/blob/main/lecture05-graphs-basics/plotnine_intro.ipynb) students should be able to:
3434

35+
- create `ggplot` objects with different types of figures using `geoms`
3536
- manipulating axis with `scale_*_continuous` and `scale_*_discrete`, where `*` stands for `y` or `x`
3637
- set limits
3738
- set break points
@@ -47,6 +48,17 @@ After completing [`plotnine_intro.ipynb`](https://github.com/gabors-data-analysi
4748

4849
After completing [`matplotlib_intro.ipynb`](https://github.com/gabors-data-analysis/da-coding-python/blob/main/lecture05-graphs-basics/matplotlib_intro.ipynb) students should be able to:
4950

51+
- the two key object in a `matplotlib` plot
52+
- `Figure`
53+
- `Axes`
54+
- set
55+
- y-axis limits
56+
- legends
57+
- log scale
58+
- using a second axis
59+
- spacing between the bars and horizontal grids
60+
- chart within a chart
61+
5062
## Datasets used
5163
* [Hotel Europe](https://gabors-data-analysis.com/datasets/#hotels-europe)
5264

lecture06-conditionals/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@ Deciding what to do on a case by case is widely used in decision making and also
66

77
## This lecture
88

9-
10-
## Learning outcomes
9+
This lecture introduces students to conditional programming with `if-else` statements. It covers the essentials control flows as `for` and `while` loop and list comprehension.
1110

1211

12+
## Learning outcomes
13+
After successfully live-coding the material (see: [`conditionals_and_control_flows.ipynb`](https://github.com/gabors-data-analysis/da-coding-python/blob/main/lecture06-conditionals/conditionals_and_control_flows.ipynb)), students will have knowledge on
1314

14-
## Datasets used
15+
- how a conditional statement works
16+
- what are the crucial elements of an `if-else` statement
17+
- what is a `for` loop
18+
- what is a `while` loop
19+
- wow to create a list comprehension
1520

1621

1722
## Lecture Time

lecture08-functions/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ This lecture introduces functions, how they are structured and how to write them
1818
## Learning outcomes
1919
After successfully live-coding the material (see: [`functions.ipynb`](https://github.com/gabors-data-analysis/da-coding-python/blob/main/lecture08-functions/functions.ipynb)), students will know on
2020

21-
21+
- how to create user definded functions
22+
- what is the structure of a function
23+
- the use of `docstring`s to document functions
24+
- the use of the `help` function to retreive function descriptions
25+
- the use of `lambda` function
2226

2327
## Lecture Time
2428

0 commit comments

Comments
 (0)