Python笔记-Pandas的Series对象

Pandas 的 Series 对象是一个带索引数据构成的一维数组,理解为一个带索引的NumPy数组。

pd.Series(data=None, index=None, dtype=None, name=None, copy=False, fastpath=False)

data,用来创建Series的数组,可以是字典dict,数组ndarray,或者标量scalar

index,用来指定Series的索引,需要和数据长度一致(如果创建数据是字典则不用),默认是RangeIndex,从0开始。若是用字典创建,则默认是字典的键key作为索引

dtype,用来指定Series的数据类型,默认与创建Series的数据类型一致,一般是NumPy type

name, 给Series对象命名,可选的

1. 创建一个Series 对象

data = pd.Series(data = {'a':"chinese","b":"math"},index = ["b","a"],name = "subject",dtype = "str")
print(data)

你可能感兴趣的:(Python,python)