簡單系列建立示例
系列是一維資料結構。它有點像增壓陣列或字典。
import pandas as pd
s = pd.Series([10, 20, 30])
>>> s
0 10
1 20
2 30
dtype: int64
系列中的每個值都有一個索引。預設情況下,索引是整數,從 0 到系列長度減 1.在上面的示例中,你可以看到列印在值左側的索引。
你可以指定自己的索引:
s2 = pd.Series([1.5, 2.5, 3.5], index=['a', 'b', 'c'], name='my_series')
>>> s2
a 1.5
b 2.5
c 3.5
Name: my_series, dtype: float64
s3 = pd.Series(['a', 'b', 'c'], index=list('ABC'))
>>> s3
A a
B b
C c
dtype: object