Skip to content

Changing output in pandas_part10.ipynb #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions pandas_part10.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -46,24 +46,24 @@
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Day</th>\n",
" <th>Kerala</th>\n",
" <th>Kolkata</th>\n",
" <th>Kerala</th>\n",
" <th>Mumbai</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Mon</td>\n",
" <td>23</td>\n",
" <td>10</td>\n",
" <td>23</td>\n",
" <td>10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Tue</td>\n",
" <td>32</td>\n",
" <td>20</td>\n",
" <td>32</td>\n",
" <td>20</td>\n",
" </tr>\n",
" <tr>\n",
Expand All @@ -76,22 +76,22 @@
" <tr>\n",
" <th>3</th>\n",
" <td>Thu</td>\n",
" <td>42</td>\n",
" <td>40</td>\n",
" <td>42</td>\n",
" <td>40</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Fri</td>\n",
" <td>13</td>\n",
" <td>32</td>\n",
" <td>13</td>\n",
" <td>32</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>Sat</td>\n",
" <td>43</td>\n",
" <td>34</td>\n",
" <td>43</td>\n",
" <td>34</td>\n",
" </tr>\n",
" <tr>\n",
Expand All @@ -106,13 +106,13 @@
"</div>"
],
"text/plain": [
" Day Kerala Kolkata Mumbai\n",
"0 Mon 23 10 10\n",
"1 Tue 32 20 20\n",
"2 Wed 13 30 30\n",
"3 Thu 42 40 40\n",
"4 Fri 13 32 32\n",
"5 Sat 43 34 34\n",
" Day Kolkata Kerala Mumbai\n",
"0 Mon 10 23 10\n",
"1 Tue 29 32 20\n",
"2 Wed 30 13 30\n",
"3 Thu 40 42 40\n",
"4 Fri 32 13 32\n",
"5 Sat 34 43 34\n",
"6 Sun 23 23 23"
]
},
Expand Down Expand Up @@ -295,7 +295,7 @@
"</div>"
],
"text/plain": [
" Day variable value\n",
" Day City Temp\n",
"0 Mon Kerala 23\n",
"1 Tue Kerala 32\n",
"2 Wed Kerala 13\n",
Expand Down