-
Notifications
You must be signed in to change notification settings - Fork 2
/
data2day_exercises.py
754 lines (645 loc) · 26.9 KB
/
data2day_exercises.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
from IPython.display import IFrame
import polars as pl
import plotly.express as px
from polars.testing import assert_frame_equal
import datetime
URL_TRACK_ID_PREFIX = "https://open.spotify.com/track/"
def play_song(df, index=0):
if "trackId" in df.columns:
trackId = df.item(index, "trackId")
elif "url" in df.columns:
trackId = df.item(index, "url")[len(URL_TRACK_ID_PREFIX):]
else:
return("Can not play a song without either column 'url' or 'trackId'")
url = f"https://open.spotify.com/embed/track/{trackId}?utm_source=generator"
return(IFrame(src=url, width="100%", height=152, style="border-radius:12px", frameBorder="0", allowfullscreen="", allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture", loading="lazy"))
def plot_rank(df, title="Daily Spotify Rank"):
plot_df = df.with_columns(
pl.format("{} by {} ({}, {})", "title", "artist", "region", "chart").alias("label"),
# (pl.col("title") + " by " + pl.col("artist") + " (" + pl.col("region") + ", " + pl.col("chart") + ")").alias("label")
).sort("date")
fig = px.line(
plot_df,
x = "date",
y = "rank",
color = "label",
title = title,
)
fig.update_layout(
yaxis = dict(autorange="reversed")
)
return(fig)
def plot_streams(df, title="Daily Spotify Streams"):
plot_df = df.with_columns(
pl.format("{} by {} ({}, {})", "title", "artist", "region", "chart").alias("label"),
).sort("date")
fig = px.line(
plot_df,
x = "date",
y = "streams",
color = "label",
title = title,
)
return(fig)
def assert_approx(actual, expected, tol=0.001):
assert abs(actual - expected) < abs(tol*expected)
def get_value(df, column=0):
if type(df) == pl.dataframe.frame.DataFrame:
value = df.item(0, column)
else:
value = df
return value
class HintSolution:
def __init__(self, question, check, hint, solution):
self.tries = 1
self._question = question
self._hint = hint
self._check = check
self._solution = solution
def question(self):
print(self._question)
def hint(self):
print(self._hint)
def solution(self):
print(self._solution)
def check(self, *args):
if type(args[0]) == type(Ellipsis):
print("❓ Moment, die drei Punkte musst du mit deiner Lösung ersetzen!")
return
try:
self._check(*args)
check_result = True
except:
check_result = False
if check_result:
if self.tries == 1:
#print("✅ Wow, first try and you nailed it! You're a natural problem-solver! 🎉👏")
print("✅ Wow, erster Versuch - du hast es voll drauf! Du bist ein geborener Problemlöser! 🎉👏")
elif self.tries == 2:
#print("✅ Right on target! You hit the bullseye on your second shot! 🎯👏")
print("✅ Voll ins Schwarze getroffen! Schon beim zweiten Schuss mitten auf die Zwölf! 🎯👏")
elif self.tries == 3:
#print("✅ Persistence pays off! Third try's a charm, and you did it! 🌟👏")
print("✅ Durchhalten zahlt sich aus! Mit dem dritten Versuch hast du es geschafft! 🌟👏")
else:
#print("✅ It might have taken a few tries, but you're unstoppable! 😅👊")
print("✅ Es hat vielleicht ein paar Versuche gebraucht, aber du bist nicht aufzuhalten! 😅👊")
else:
if self.tries == 1:
#print("🤔 Give it another shot! You're just getting started. 🔍")
print("🤔 Probier es nochmal! Du hast ja gerade erst angefangen. 🔍")
elif self.tries == 2:
#print("🤔 Two tries down, but the solution is within reach. Keep going! 🧐")
print("🤔 Zwei Versuche hinter dir, aber die Lösung ist in Reichweite. Nur Mut! 🧐")
elif self.tries == 3:
#print("🤔 Almost there, just one more push! You can do it! 😬")
print("🤔 Du bist fast am Ziel, nur noch eine letzte Anstrengung! Du schaffst das! 😬")
else:
#print("🤔 It's tough, but don't lose hope! Maybe consider using the hint() method now? 😓")
print("🤔 Es ist schwierig, aber verlier nicht die Hoffnung! Hast du schon die hint() Methode verwendet? 😓")
self.tries = self.tries + 1
def q0_check(x):
assert x == "BettercallPaul"
q0 = HintSolution(
'Bei welcher Firma arbeiten Tobi und Thomas?',
q0_check,
'Es ist nicht BettercallSaul.',
'coole_firma = "BettercallPaul"'
)
def q1_check(df):
assert df.shape == (362_182, 4)
assert df.columns == ["date", "rank", "title", "artist"]
q1 = HintSolution(
'Selektiere vom Dataframe "df" nur die Spalten "date", "rank", "title" und "artist".',
q1_check,
'Achte auf die Reihenfolge der Spalten und nutze die Methode "select".',
'q1_df = df.select("date", "rank", "title", "artist")'
)
def q2_check(df):
assert df.shape == (362_182, 4)
assert df.columns == ["date", "rank", "title", "performer"]
q2 = HintSolution(
'Selektiere nun die Spalten "date", "rank", "title" und "artist", aber benenne die Spalte "artist" in "performer" um.',
q2_check,
'Du kannst die Funktion "alias" nutzen, um eine Spalte umzubenennen.',
'q2_df = df.select("date", "rank", "title", pl.col("artist").alias("performer"))'
)
def q3_check(result):
result = get_value(result)
assert_approx(result, 1_212_938)
q3 = HintSolution(
'Was ist der Durchschnitt an Streams im Datensatz?',
q3_check,
'Du kannst pl.col("streams") mit der Funktion "mean" verbinden.',
'q3_df = df.select(pl.col("streams").mean())'
)
def q4_check(rank_1, rank_200):
rank_1 = get_value(rank_1)
rank_200 = get_value(rank_200)
assert_approx(rank_1, 6_452_678)
assert_approx(rank_200, 604_534)
q4 = HintSolution(
'Wie oft wurden Lieder auf Platz 1 durchschnittlich pro Tag gestreamt und wie oft die Lieder auf Platz 200?',
q4_check,
'So ähnlich wie Frage 3 aber jeweils die Spalte "rank" entsprechend gefiltert.',
'''
rank_1 = df.filter(pl.col("rank").eq(1)).select(pl.col("streams").mean())
rank_200 = df.filter(pl.col("rank").eq(200)).select(pl.col("streams").mean())
'''
)
def q5_check(result):
result = get_value(result, "title")
assert result == "rockstar"
q5 = HintSolution(
'Welches Lied war am Sylvesterabend 2017 auf Platz 1? Höre es auch gerne an.',
q5_check,
'Filter sowohl auf den 31.12.2017 ("date") als auch auf den Platz 1 ("rank").',
'''
q5_df = df.filter(pl.col("date").eq(pl.date(2017, 12, 31)) & pl.col("rank").eq(1))
play_song(q5_df)
'''
)
def q6_check(result):
expected = pl.DataFrame({
"title": ["All I Want for Christmas Is You", "Last Christmas"],
"artist": ["Mariah Carey", "Wham!"],
"date_min": ["2017-11-11", "2017-11-11"],
"date_max": ["2021-12-20", "2021-12-20"]
}).with_columns(pl.col("date_min", "date_max").str.to_date())
actual = result.select("title", "artist", pl.col("date").min().name.suffix("_min"), pl.col("date").max().name.suffix("_max")).unique()
assert_frame_equal(expected, actual, check_row_order=False, check_column_order=False)
q6 = HintSolution(
'''
🎄🎅🏻 X-Mas-Showdown 🎅🏻🎄
"Last Christmas" von "Wham!" oder "All I Want for Christmas Is You" von "Mariah Carey"???
Filter auf die beiden Lieder und plotte dann die Streams. Was ist dein Favorit?
''',
q6_check,
'Du brauchst einen Filter in der Form (TITEL_1 und KÜNSTLER_1) oder (TITEL_2 und KÜNSTLER_2) und die Methode "plot_streams".',
'''
q6_df = df.filter(
(pl.col("title").eq("All I Want for Christmas Is You") & pl.col("artist").eq("Mariah Carey")) |
(pl.col("title").eq("Last Christmas") & pl.col("artist").eq("Wham!"))
)
plot_streams(q6_df)
'''
)
def q7_check(result):
expected = pl.DataFrame({
"title": ["Last Christmas"],
"artist": ["Wham!"],
"date_min": ["2017-12-24"],
"date_max": ["2020-12-25"]
}).with_columns(pl.col("date_min", "date_max").str.to_date())
actual = result.select("title", "artist", pl.col("date").min().name.suffix("_min"), pl.col("date").max().name.suffix("_max")).unique()
assert_frame_equal(expected, actual, check_row_order=False, check_column_order=False)
q7 = HintSolution(
'Filter auf alle zweitplatzierten Lieder an Weihnachten (24. und 25. Dezember)!',
q7_check,
'Filter sowohl auf den Tag ("dt.day()") mit "is_between", auf Dezember ("dt.month()") und auf den Platz 2 ("rank").',
'''
q7_df = df.filter(
pl.col("date").dt.month().eq(12) &
pl.col("date").dt.day().is_between(24, 25) &
pl.col("rank").eq(2)
)
'''
)
def q8_check(monday, friday):
monday = get_value(monday, "streams")
friday = get_value(friday, "streams")
assert_approx(monday, 1_180_265)
assert_approx(friday, 1_325_348)
q8 = HintSolution(
'Berechne die durchschnittliche Anzahl an Streams je Song an Montagen und an Freitagen!',
q8_check,
'Filter auf jeweils auf den Wochentag mit "dt.weekday()", beachte "Montag==1"',
'''
q8_monday = df.filter(pl.col("date").dt.weekday().eq(1)).select(pl.col("streams").mean())
q8_friday = df.filter(pl.col("date").dt.weekday().eq(5)).select(pl.col("streams").mean())
'''
)
def q9_check(result):
result = get_value(result)
assert (result - datetime.timedelta(days=14, hours=15, minutes=39)).total_seconds() < 60
q9 = HintSolution(
'Wie viele Tage sind im Datensatz durchschnittlich seit dem jeweiligen Monatsbeginn vergangen?',
q9_check,
'Bilde den Mittelwert ("mean") über die Differenz vom Datum und Monatsbeginn ("dt.month_start()").',
'''
q9_df = df.select((pl.col("date") - pl.col("date").dt.month_start()).mean())
'''
)
def q10_check(result):
expected = pl.DataFrame({
"artist": [
"Shawn Mendes, Zedd",
"Zedd, Maren Morris, Grey",
"Zedd, Jasmine Thompson",
"Zedd, Katy Perry",
"Hailee Steinfeld, Grey, Zedd",
"Zedd, Alessia Cara",
"Zedd, Elley Duhé"
],
})
assert_frame_equal(expected, result, check_row_order=False, check_column_order=False)
q10 = HintSolution(
'Erstelle einen Dataframe mit allen Künstler-Kooperationen bei denen "Zedd" mitgewirkt hat.',
q10_check,
'Filter auf alle Künstlernamen in den Zedd enthalten ist, aber die nicht genau Zedd sind. Benutze die Funktion "unique".',
'''
q10_df = df.filter(pl.col("artist").str.contains("Zedd") & pl.col("artist").ne("Zedd")).select(pl.col("artist").unique())
'''
)
def q11_check(ohne_zedd, mit_zedd):
ohne_zedd = get_value(ohne_zedd)
mit_zedd = get_value(mit_zedd)
assert ohne_zedd == 101
assert mit_zedd == 6
q11 = HintSolution(
'Was ist die höchste Chart-Platzierung, die "Maren Morris" mit "Zedd" erreicht hat? Und ohne ihn?',
q11_check,
'Filter auf Künstler-Namen die "Maren Morris" und/und nicht "Zedd" enthalten. Nutze den kleinsten Wert von "rank".',
'''
q11_ohne_zedd = (
df.filter(
pl.col("artist").str.contains("Maren Morris") &
~ pl.col("artist").str.contains("Zedd")
)
.select(pl.col("rank").min())
)
q11_mit_zedd = (
df.filter(
pl.col("artist").str.contains("Maren Morris") &
pl.col("artist").str.contains("Zedd")
)
.select(pl.col("rank").min())
)
'''
)
def q12_check(df, result):
expected_size = df.with_columns(
pl.col("title").cast(pl.Categorical),
pl.col("artist").cast(pl.Categorical),
pl.col("trend").cast(pl.Categorical),
pl.col("region").cast(pl.Categorical),
pl.col("chart").cast(pl.Categorical),
pl.col("rank").cast(pl.UInt8),
pl.col("streams").cast(pl.UInt32),
pl.col("url").str.slice(len("https://open.spotify.com/track/")).cast(pl.Categorical)
).estimated_size("mb")
actual_size = result.estimated_size("mb")
assert actual_size <= expected_size
q12 = HintSolution(
'''
Minimiere den Speicherverbrauch des Dataframes durch andere Datentypen und das Entfernen eines unnötigen Präfix.
Den Speicherverbrauch kannst du mit df.estimated_size("mb") anzeigen.
''',
q12_check,
'Entferne den Präfix aus der Spalte "url" z.B. mit "str.replace" oder "str.slice", caste zu "pl.Categorical" für alle Strings, UInt8 bzw. UInt32 für die Zahlen.',
'''
q12_df = df.with_columns(
pl.col("title").cast(pl.Categorical),
pl.col("artist").cast(pl.Categorical),
pl.col("trend").cast(pl.Categorical),
pl.col("region").cast(pl.Categorical),
pl.col("chart").cast(pl.Categorical),
pl.col("rank").cast(pl.UInt8),
pl.col("streams").cast(pl.UInt32),
pl.col("url").str.slice(len("https://open.spotify.com/track/")).cast(pl.Categorical)
)
'''
)
def q13_check(result):
expected = pl.DataFrame([
pl.Series("title", ['Sunflower - Spider-Man: Into the Spider-Verse', 'Someone You Loved', 'Dance Monkey', 'Blinding Lights', 'Shape of You'], dtype=pl.Utf8),
pl.Series("artist", ['Post Malone, Swae Lee', 'Lewis Capaldi', 'Tones And I', 'The Weeknd', 'Ed Sheeran'], dtype=pl.Utf8),
pl.Series("streams", [2046023015, 2111297778, 2373957880, 2623933279, 2921494072], dtype=pl.Int64),
])
assert_frame_equal(expected, result, check_row_order=False, check_column_order=False)
q13 = HintSolution(
'''
Ermittel die 5 Songs mit den meisten Streams über den gesamten Zeitraum.
''',
q13_check,
'Gruppiere nach "title" und "artist", aggregiere "streams" als Summe und filter mit der Funktion "top_k".',
'''
q13_df = (df
.group_by("title", "artist")
.agg(pl.col("streams").sum())
.top_k(5, by="streams")
)
'''
)
def q14_check(result):
expected = pl.DataFrame([
pl.Series("title", ['Shape of You', 'Blinding Lights', 'Dance Monkey', 'Someone You Loved', 'Sunflower - Spider-Man: Into the Spider-Verse'], dtype=pl.Utf8),
pl.Series("urlCount", [1, 3, 2, 2, 5], dtype=pl.UInt32),
])
assert_frame_equal(expected, result.select("title", "urlCount"), check_row_order=False, check_column_order=False)
q14 = HintSolution(
'''
Ermittel die 5 Songs mit den meisten Streams über den gesamten Zeitraum und auch
wie viele unterschiedliche "url"s je Song vorhanden sind ("urlCount") und eine (die erste) "url" je Song.
Höre dir die Songs mit der Funktion "play_song" an.
''',
q14_check,
'Wie Frage 13, aber zusätzlich mit "n_unique" (als "urlCount") und "first" auf der Spalte "url".',
'''
q14_df = (df
.group_by("title", "artist")
.agg(pl.col("streams").sum(), pl.col("url").n_unique().alias("urlCount"), pl.col("url").first())
.top_k(5, by="streams")
)
play_song(q14_df, 0)
'''
)
def q15_check(result):
expected = pl.DataFrame([
pl.Series("title", ['Thinking out Loud', "Say You Won't Let Go", 'Shape of You', 'All of Me', 'Photograph'], dtype=pl.Utf8),
])
assert_frame_equal(expected, result.select("title"), check_row_order=False, check_column_order=False)
q15 = HintSolution(
'''
Berechne pro Song den romantischen 💕 Valentins-Index ("valentinesIndex") als durchschnittliche Anzahl an Streams
am Valentins-Tag geteilt durch die durchschnittliche Anzahl an Streams an allen anderen Tagen.
Filter auf die 5 romantischsten Songs 😍 🎶 😍, die in jedem Jahr am Valentins-Tag in den Charts waren.
Plotte die Streams für den romantischsten Song.
''',
q15_check,
'''
Lege ein Hilfs-Spalte "isValentinesDay" an, gruppiere nach Titel und Künstler und ermittel in der Aggregation
die Anzahl der Jahre mit "n_unique" und filter die Aggregations-Ausdrücke mit der Hilfs-Spalte "isValentinesDay".
''',
'''
q15_df = (df
.with_columns((pl.col("date").dt.month().eq(2) & pl.col("date").dt.day().eq(14)).alias("isValentinesDay"))
.group_by("title", "artist")
.agg(
pl.col("date").filter(pl.col("isValentinesDay")).dt.year().n_unique().alias("valentineYears"),
(pl.col("streams").filter(pl.col("isValentinesDay")).mean()/pl.col("streams").filter(~pl.col("isValentinesDay")).mean()).alias("valentinesIndex"),
)
.filter(pl.col("valentineYears").eq(5))
.top_k(5, by="valentinesIndex")
)
plot_streams(df.filter(pl.col("title").eq("Thinking out Loud")))
'''
)
def q16_check(result):
expected_date = pl.DataFrame([
pl.Series("date", [datetime.date(2021, 12, 20)], dtype=pl.Date),
])
expected_songs = pl.DataFrame([
pl.Series("artist", ['Mariah Carey', 'Michael Bublé', 'Wham!'], dtype=pl.Utf8),
pl.Series("title", ['All I Want for Christmas Is You', "It's Beginning to Look a Lot like Christmas", 'Last Christmas'], dtype=pl.Utf8),
])
assert_frame_equal(expected_date, result.select(pl.col("date").max()), check_row_order=False, check_column_order=False)
assert_frame_equal(expected_songs, result.select("artist", "title").unique(), check_row_order=False, check_column_order=False)
q16 = HintSolution(
'''
Erstelle eine Liste mit Weihnachts-Liedern in dem Du auf alle Titel filterst, die das Wort "Christmas" enthalten.
Gruppiere dann auf "url" und ermittel die Top-3 Songs mit den meisten Streams. Verbinde den Original-Datensatz und plotte
die Streams der drei beliebtesten Weihnachtslieder.
''',
q16_check,
'''
Nutze einen eigenen Namen für die Summe aller Streams (z.B. "totalStreams"), nutze top_k und mache einen join auf "df" mit "url" als Schlüssel.
''',
'''
q16_df = (df
.filter(pl.col("title").str.contains("Christmas"))
.group_by("url")
.agg(pl.col("streams").sum().alias("totalStreams"))
.top_k(3, by="totalStreams")
.join(df, on="url")
)
plot_streams(q16_df)
'''
)
def q17_check(result):
expected = pl.DataFrame([
pl.Series("genre", ['pop music', 'hip hop music', 'contemporary R&B', 'dance-pop', 'trap music'], dtype=pl.Utf8),
])
assert_frame_equal(expected, result.select("genre"), check_row_order=False, check_column_order=False)
q17 = HintSolution(
'''
Lese die Datei "track-genres.parquet" ein. Ergänze dann den Hauptdatensatz um diese Genres und ermittel die 5 am meisten gestreamten Musik-Genres.
''',
q17_check,
'''
Joine über die Spalte "url" und rolle die Spalte "genres" mit der Methode explode aus, bevor du gruppierst, aggregierst und auf die Top 5 filterst.
''',
'''
q17_df = (df
.join(pl.read_parquet("track-genres.parquet"), on="url")
.explode("genre")
.group_by("genre")
.agg(pl.col("streams").sum())
.top_k(5, by="streams")
)
'''
)
def q18_check(result):
result = get_value(result)
assert_approx(result, 0.519)
q18 = HintSolution(
'''
Ermittel den Anteil der gesamten Streams für die wir ein oder mehrere Genres haben (z.B. 0.25 falls für 25% der Streams eine Genre-Angabe vorhanden ist).
''',
q18_check,
'''
Benutze einen Left-Join. Das Ergebnis sollte entweder eine Zahl kleiner als 1 mit 3 Nachkommastellen sein oder ein Dataframe mit genau einer Zeile und einer Spalte sein.
''',
'''
q18_df = (df
.join(pl.read_parquet("track-genres.parquet"), on="url", how="left")
.group_by(pl.col("genre").is_not_null().alias("knownGenre"))
.agg(pl.col("streams").sum())
.with_columns(pl.col("streams")/pl.col("streams").sum())
.select(pl.col("streams").filter(pl.col("knownGenre")))
)
'''
)
def q19_check(result):
expected = pl.DataFrame([
pl.Series("artist", ['Drake', 'Taylor Swift', 'Ariana Grande', 'Mariah Carey', 'Billie Eilish', 'Post Malone'], dtype=pl.Utf8),
pl.Series("2020", [1, 2, 2, 1, 2, 0], dtype=pl.UInt32),
pl.Series("2018", [4, 0, 1, 1, 0, 3], dtype=pl.UInt32),
pl.Series("2019", [0, 1, 2, 1, 2, 1], dtype=pl.UInt32),
pl.Series("2017", [0, 1, 0, 1, 0, 0], dtype=pl.UInt32),
pl.Series("2021", [2, 1, 0, 1, 0, 0], dtype=pl.UInt32),
pl.Series("allYears", [7, 5, 5, 5, 4, 4], dtype=pl.UInt32),
])
assert_frame_equal(expected, result, check_row_order=False, check_column_order=False)
q19 = HintSolution(
'''
Erstelle einen Dataframe der für jeden Künstler die Anzahl der Nr. 1 Hits je Jahr in getrennten Spalten ausweist.
Erstelle zusätzlich eine Spalte für die Gesamtanzahl an Nr. 1 Hits ("allYears") und
filtere auf die 6 Künstler mit den meisten Nr. 1 Hits ("allYears").
''',
q19_check,
'''
Filter auf die Nr. 1 Hits, zähle die eindeutigen Titelnamen je Jahr und Künstler und pivotiere dann.
''',
'''
q19_df = (df
.filter(pl.col("rank").eq(1))
.group_by("artist", pl.col("date").dt.year().alias("year"))
.agg(pl.col("title").n_unique().alias("numberOnes"))
.pivot(index="artist", on="year", values="numberOnes")
.fill_null(0)
.with_columns(pl.sum_horizontal(pl.all().exclude("artist")).alias("allYears"))
.top_k(6, by="allYears")
)
'''
)
q20 = HintSolution(
'''
Schreibe die Musterlösung von Frage 12 so um, dass die String-Spalten nicht einzeln
mit einem Namen selektiert werden.
''',
q12_check,
'Entferne alle Casts zu Categorical aus der Musterlösung und mache den finalen Cast in einem zusätzlichen "with_columns".',
'''
q20_df = (df
.with_columns(
pl.col("rank").cast(pl.UInt8),
pl.col("streams").cast(pl.UInt32),
pl.col("url").str.slice(len("https://open.spotify.com/track/"))
)
.with_columns(pl.col(pl.Utf8).cast(pl.Categorical)))
'''
)
def q21_check(result):
expected = pl.DataFrame([
pl.Series("region", ['Global', 'United States', 'Brazil', 'Mexico', 'Germany', 'United Kingdom', 'Spain', 'Italy', 'France', 'Australia'], dtype=pl.Utf8),
])
assert_frame_equal(expected, result.select("region"), check_row_order=False, check_column_order=False)
q21 = HintSolution(
'''
Ermittel die 10 Regionen mit den meisten Streams.
''',
q21_check,
'Gruppiere nach "region", aggregiere und dann top-k.',
'''
q21_df = (df
.group_by("region")
.agg(pl.col("streams").sum())
.top_k(10, by="streams")
.collect()
)
'''
)
def q22_check(result):
expected = pl.DataFrame([
pl.Series("region", ['Norway', 'Sweden', 'Iceland', 'Denmark', 'Netherlands', 'Finland', 'Chile', 'New Zealand', 'Ireland', 'Australia'], dtype=pl.Utf8),
])
assert_frame_equal(expected, result.select("region"), check_row_order=False, check_column_order=False)
q22 = HintSolution(
'''
Lade zusätzlich die Datei region-info.csv und ermittel jetzt die 10 Regionen mit
den meisten Streams relativ zur Bevölkerung.
''',
q22_check,
'Lade "region-info.csv" mit "pl.scan_csv", teile die Summe der Streams durch "population".',
'''
region_df = pl.scan_csv("region-info.csv")
q22_df = (df
.group_by("region")
.agg(pl.col("streams").sum())
.join(region_df, on="region")
.with_columns(pl.col("streams")/pl.col("population"))
.top_k(10, by="streams")
.collect()
)
'''
)
def q23_check(result):
expected = pl.DataFrame([
pl.Series("chart", ['viral50', 'top200'], dtype=pl.Utf8),
])
assert_frame_equal(expected, result, check_row_order=False, check_column_order=False)
q23 = HintSolution(
'''
Ermittel die unterschiedlichen Werte für die Spalte "chart".
''',
q23_check,
'Du kannst die Funktion "unique" verwenden.',
'''
q23_df = df.select(pl.col("chart").unique()).collect()
'''
)
def q24_check(result):
expected = pl.DataFrame([
pl.Series("continent", ['Asia,Europe', 'Europe,Asia', 'North America', 'Oceania', 'Africa', 'Earth', 'Asia', 'Europe', 'South America'], dtype=pl.Utf8),
pl.Series("xmasYears", [4, 1, 5, 4, 3, 4, 5, 5, 5], dtype=pl.UInt32),
])
assert_frame_equal(expected, result, check_row_order=False, check_column_order=False)
q24 = HintSolution(
'''
Berechne pro Kontinent für wie viele Weihnachten es Einträge für die "top200" gibt (sowohl
am 24. als auch 25. Dezember). Nenne die Spalte mit den Jahren "xmasYears".
''',
q24_check,
'Lade "region-info.csv" mit "pl.scan_csv" und joine, filter auf "top200" und Weihnachten und nutze "dt.year().n_unique()"',
'''
region_df = pl.scan_csv("region-info.csv")
q24_df = (df
.filter(
pl.col("chart").eq("top200") &
pl.col("date").dt.month().eq(12) &
pl.col("date").dt.day().is_between(24, 25)
)
.join(region_df, on="region")
.group_by("continent")
.agg(pl.col("date").dt.year().n_unique().alias("xmasYears"))
.collect()
)
'''
)
def q25_check(result):
expected = pl.DataFrame([
pl.Series("continent", ['Earth', 'Earth', 'North America', 'North America', 'Europe', 'Europe', 'South America', 'South America', 'Asia,Europe', 'Asia,Europe', 'Asia', 'Asia', 'Oceania', 'Oceania', 'Europe,Asia', 'Europe,Asia', 'Africa', 'Africa'], dtype=pl.Utf8),
pl.Series("artist", ['Mariah Carey', 'Wham!', 'Mariah Carey', 'Bobby Helms', 'Mariah Carey', 'Wham!', 'Mariah Carey', 'Bobby Helms', 'Ezhel', 'Yüzyüzeyken Konuşuruz', 'Mariah Carey', 'Ariana Grande', 'Mariah Carey', 'Wham!', 'Big Baby Tape', 'SLAVA MARLOW', 'Mariah Carey', 'Wham!'], dtype=pl.Utf8),
pl.Series("title", ['All I Want for Christmas Is You', 'Last Christmas', 'All I Want for Christmas Is You', 'Jingle Bell Rock', 'All I Want for Christmas Is You', 'Last Christmas', 'All I Want for Christmas Is You', 'Jingle Bell Rock', 'Geceler', 'Ne Farkeder', 'All I Want for Christmas Is You', 'Santa Tell Me', 'All I Want for Christmas Is You', 'Last Christmas', 'KARI', 'Снова я напиваюсь', 'All I Want for Christmas Is You', 'Last Christmas'], dtype=pl.Utf8),
])
assert_frame_equal(expected, result.select("continent", "title", "artist"), check_row_order=False, check_column_order=False)
q25 = HintSolution(
'''
Schwieriger Endgegner: Berechne die Top-Weihnachts-Songs je Kontinent.
- Erstelle einen Dataframe mit Kontinent und Anzahl an Weihnachten (siehe q24)
- Filter dann den Datensatz zuerst auf Songs die an jedem Weihnachten,
dass für den Kontinent im Datensatz enthalten ist, auch in den Top-200 waren.
- Ermittel dann von diesen Songs je Kontinent welche an Weihnachten am meisten gespielt wurden
- Erstelle einen Dataframe mit den Top-2 je Kontinent
''',
q25_check,
'',
'''
region_df = pl.scan_csv("region-info.csv")
xmasYears_per_continent = (df
.filter(
pl.col("chart").eq("top200") &
pl.col("date").dt.month().eq(12) &
pl.col("date").dt.day().is_between(24, 25)
)
.join(region_df, on="region")
.group_by("continent")
.agg(pl.col("date").dt.year().n_unique().alias("xmasYears"))
)
q25_df = (df
.filter((pl.col("date").dt.month().eq(12) & pl.col("date").dt.day().is_between(24, 25)))
.join(region_df, on="region")
.group_by("title", "artist", "continent")
.agg(
pl.col("date").dt.year().n_unique().alias("xmasYears"),
pl.col("streams").sum()
)
.join(xmasYears_per_continent, on=["continent", "xmasYears"])
.sort("streams", descending=True)
.group_by("continent")
.head(2)
.collect()
)
'''
)