Skip to content

Commit 96951b2

Browse files
committed
Series
1 parent 7c342d0 commit 96951b2

File tree

1 file changed

+35
-7
lines changed

1 file changed

+35
-7
lines changed

Pandas.ipynb

Lines changed: 35 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
{
1414
"cell_type": "code",
15-
"execution_count": 11,
15+
"execution_count": 25,
1616
"metadata": {},
1717
"outputs": [],
1818
"source": [
@@ -70,26 +70,54 @@
7070
},
7171
{
7272
"cell_type": "code",
73-
"execution_count": 17,
73+
"execution_count": 26,
7474
"metadata": {},
7575
"outputs": [
7676
{
7777
"data": {
7878
"text/plain": [
79-
"10 a\n",
80-
"20 b\n",
81-
"30 c\n",
82-
"dtype: object"
79+
"a 10\n",
80+
"b 20\n",
81+
"c 30\n",
82+
"dtype: int64"
8383
]
8484
},
85-
"execution_count": 17,
85+
"execution_count": 26,
8686
"metadata": {},
8787
"output_type": "execute_result"
8888
}
8989
],
9090
"source": [
9191
"pd.Series(data=my_data,index=lables)"
9292
]
93+
},
94+
{
95+
"cell_type": "code",
96+
"execution_count": 27,
97+
"metadata": {},
98+
"outputs": [
99+
{
100+
"data": {
101+
"text/plain": [
102+
"a 10\n",
103+
"dtype: int64"
104+
]
105+
},
106+
"execution_count": 27,
107+
"metadata": {},
108+
"output_type": "execute_result"
109+
}
110+
],
111+
"source": [
112+
"pd.Series(d)"
113+
]
114+
},
115+
{
116+
"cell_type": "code",
117+
"execution_count": null,
118+
"metadata": {},
119+
"outputs": [],
120+
"source": []
93121
}
94122
],
95123
"metadata": {

0 commit comments

Comments
 (0)