Skip to content

Commit 6b27385

Browse files
Task KeithGalli#1 Completed - Merge datasets
1 parent 8b511cd commit 6b27385

File tree

3 files changed

+187290
-0
lines changed

3 files changed

+187290
-0
lines changed
Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "loving-flush",
6+
"metadata": {},
7+
"source": [
8+
"# Sales Analysis"
9+
]
10+
},
11+
{
12+
"cell_type": "markdown",
13+
"id": "concerned-course",
14+
"metadata": {},
15+
"source": [
16+
"## Import Libraries"
17+
]
18+
},
19+
{
20+
"cell_type": "code",
21+
"execution_count": 1,
22+
"id": "pacific-projection",
23+
"metadata": {},
24+
"outputs": [],
25+
"source": [
26+
"import pandas as pd\n",
27+
"import numpy as np\n",
28+
"import matplotlib.pyplot as plt\n",
29+
"import seaborn as sns"
30+
]
31+
},
32+
{
33+
"cell_type": "markdown",
34+
"id": "oriental-suffering",
35+
"metadata": {},
36+
"source": [
37+
"## Merge All 12 months worth of sales data into a single dataset"
38+
]
39+
},
40+
{
41+
"cell_type": "code",
42+
"execution_count": 2,
43+
"id": "attractive-dream",
44+
"metadata": {},
45+
"outputs": [
46+
{
47+
"data": {
48+
"text/plain": [
49+
"12"
50+
]
51+
},
52+
"execution_count": 2,
53+
"metadata": {},
54+
"output_type": "execute_result"
55+
}
56+
],
57+
"source": [
58+
"dataset_names = ['Sales_April_2019', \n",
59+
" 'Sales_August_2019', \n",
60+
" 'Sales_December_2019', \n",
61+
" 'Sales_February_2019', \n",
62+
" 'Sales_January_2019',\n",
63+
" 'Sales_July_2019',\n",
64+
" 'Sales_June_2019',\n",
65+
" 'Sales_March_2019',\n",
66+
" 'Sales_May_2019',\n",
67+
" 'Sales_November_2019',\n",
68+
" 'Sales_October_2019',\n",
69+
" 'Sales_September_2019']"
70+
]
71+
},
72+
{
73+
"cell_type": "code",
74+
"execution_count": null,
75+
"id": "specified-superintendent",
76+
"metadata": {},
77+
"outputs": [],
78+
"source": []
79+
},
80+
{
81+
"cell_type": "code",
82+
"execution_count": null,
83+
"id": "prime-chancellor",
84+
"metadata": {},
85+
"outputs": [],
86+
"source": []
87+
},
88+
{
89+
"cell_type": "code",
90+
"execution_count": null,
91+
"id": "polyphonic-sauce",
92+
"metadata": {},
93+
"outputs": [],
94+
"source": []
95+
},
96+
{
97+
"cell_type": "code",
98+
"execution_count": null,
99+
"id": "apart-paste",
100+
"metadata": {},
101+
"outputs": [],
102+
"source": []
103+
},
104+
{
105+
"cell_type": "code",
106+
"execution_count": null,
107+
"id": "plastic-luxury",
108+
"metadata": {},
109+
"outputs": [],
110+
"source": []
111+
},
112+
{
113+
"cell_type": "code",
114+
"execution_count": null,
115+
"id": "coral-graphic",
116+
"metadata": {},
117+
"outputs": [],
118+
"source": []
119+
},
120+
{
121+
"cell_type": "code",
122+
"execution_count": null,
123+
"id": "furnished-officer",
124+
"metadata": {},
125+
"outputs": [],
126+
"source": []
127+
},
128+
{
129+
"cell_type": "code",
130+
"execution_count": null,
131+
"id": "younger-symbol",
132+
"metadata": {},
133+
"outputs": [],
134+
"source": []
135+
}
136+
],
137+
"metadata": {
138+
"kernelspec": {
139+
"display_name": "Python 3",
140+
"language": "python",
141+
"name": "python3"
142+
},
143+
"language_info": {
144+
"codemirror_mode": {
145+
"name": "ipython",
146+
"version": 3
147+
},
148+
"file_extension": ".py",
149+
"mimetype": "text/x-python",
150+
"name": "python",
151+
"nbconvert_exporter": "python",
152+
"pygments_lexer": "ipython3",
153+
"version": "3.8.7"
154+
},
155+
"toc-autonumbering": true
156+
},
157+
"nbformat": 4,
158+
"nbformat_minor": 5
159+
}

0 commit comments

Comments
 (0)