简单系列创建示例

系列是一维数据结构。它有点像增压阵列或字典。

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