Skip to content

Commit 6cdb146

Browse files
Add streamageddon.ipynb
1 parent 104905a commit 6cdb146

File tree

2 files changed

+80
-0
lines changed

2 files changed

+80
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.ipynb_checkpoints

streamageddon.ipynb

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "a35eeb9f-df70-4ab1-a243-2d2025888eb0",
6+
"metadata": {},
7+
"source": [
8+
"# Streamageddon\n",
9+
"Spotify's armageddon investments and data science meet\n",
10+
"## Preprocessing"
11+
]
12+
},
13+
{
14+
"cell_type": "code",
15+
"execution_count": 3,
16+
"id": "31cf5f11-c2d1-4fb5-bfa2-d16d25e6b130",
17+
"metadata": {},
18+
"outputs": [
19+
{
20+
"name": "stdout",
21+
"output_type": "stream",
22+
"text": [
23+
"Requirement already satisfied: pandas==2.3.2 in /home/taguchi/.local/share/pipx/venvs/jupyterlab/lib/python3.12/site-packages (2.3.2)\n",
24+
"Requirement already satisfied: numpy>=1.26.0 in /home/taguchi/.local/share/pipx/venvs/jupyterlab/lib/python3.12/site-packages (from pandas==2.3.2) (2.3.2)\n",
25+
"Requirement already satisfied: python-dateutil>=2.8.2 in /home/taguchi/.local/share/pipx/venvs/jupyterlab/lib/python3.12/site-packages (from pandas==2.3.2) (2.9.0.post0)\n",
26+
"Requirement already satisfied: pytz>=2020.1 in /home/taguchi/.local/share/pipx/venvs/jupyterlab/lib/python3.12/site-packages (from pandas==2.3.2) (2025.2)\n",
27+
"Requirement already satisfied: tzdata>=2022.7 in /home/taguchi/.local/share/pipx/venvs/jupyterlab/lib/python3.12/site-packages (from pandas==2.3.2) (2025.2)\n",
28+
"Requirement already satisfied: six>=1.5 in /home/taguchi/.local/share/pipx/venvs/jupyterlab/lib/python3.12/site-packages (from python-dateutil>=2.8.2->pandas==2.3.2) (1.17.0)\n",
29+
"Note: you may need to restart the kernel to use updated packages.\n"
30+
]
31+
}
32+
],
33+
"source": [
34+
"%pip install pandas==2.3.2"
35+
]
36+
},
37+
{
38+
"cell_type": "code",
39+
"execution_count": 1,
40+
"id": "564a2258",
41+
"metadata": {},
42+
"outputs": [
43+
{
44+
"name": "stdout",
45+
"output_type": "stream",
46+
"text": [
47+
"Hello, World!\n"
48+
]
49+
}
50+
],
51+
"source": [
52+
"import pandas as pd\n",
53+
"\n",
54+
"print(\"Hello, World!\")"
55+
]
56+
}
57+
],
58+
"metadata": {
59+
"kernelspec": {
60+
"display_name": "Python 3 (ipykernel)",
61+
"language": "python",
62+
"name": "python3"
63+
},
64+
"language_info": {
65+
"codemirror_mode": {
66+
"name": "ipython",
67+
"version": 3
68+
},
69+
"file_extension": ".py",
70+
"mimetype": "text/x-python",
71+
"name": "python",
72+
"nbconvert_exporter": "python",
73+
"pygments_lexer": "ipython3",
74+
"version": "3.12.3"
75+
}
76+
},
77+
"nbformat": 4,
78+
"nbformat_minor": 5
79+
}

0 commit comments

Comments
 (0)