You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: assignments/assignment-2.qmd
+32-3Lines changed: 32 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ In this excercise, you will create a program that is able to redact secret infor
32
32
```{python}
33
33
# Secret information redactor
34
34
# TODO: Create a program that is able to redact secret information in a text.
35
-
# Your code here
35
+
# YOUR CODE HERE
36
36
```
37
37
38
38
# Dice roll simulator
@@ -41,10 +41,17 @@ In this excercise, you will create a program that is able to simulate dice rolls
41
41
```{python}
42
42
# Dice roll simulator
43
43
# TODO: Create a program that is able to simulate a dice roll.
44
-
# Your code here
44
+
# YOUR CODE HERE
45
45
```
46
46
47
47
# Regression analysis
48
+
49
+
:::{.callout-note}
50
+
51
+
You will either have to to this excercise or the next one about dashboards.
52
+
53
+
:::
54
+
48
55
In this excercise, you will create a program that performs linear regression on a dataset with housing prices. The dataset can be found in the git repository under `assignments/hamburg_housing_prices.csv`. The dataset contains the following columns:
49
56
50
57
- Price: The price of the house in Euros.
@@ -58,5 +65,27 @@ Your task is to perform a **linear regression analysis** on the dataset and to p
58
65
```{python}
59
66
# Regression analysis
60
67
# TODO: Create a program that performs linear regression analysis on the dataset.
61
-
# Your code here
68
+
# YOUR CODE HERE
69
+
```
70
+
71
+
# Dashboards
72
+
73
+
:::{.callout-note}
74
+
75
+
You will either have to to this excercise or the previous one about regression analysis.
76
+
77
+
:::
78
+
79
+
In this exercise, you will create a program that visualizes a data set of your choice in a dashboard. For this excercise, you can choose any data set of your interest. The data should be visualized in a dashboard with at least two plots. You can use one of the dashboard libraries we discussed in the lecture.
80
+
81
+
:::{.callout-note}
82
+
83
+
The dashboard should be programmed in a separate file I can call for evaluation.
84
+
85
+
:::
86
+
87
+
```{python}
88
+
# Dashboards
89
+
# TODO: Create a program that visualizes a data set of your choice in a dashboard.
0 commit comments