import pandas as pd
pandas常用的数据结构有Series和DataFrame,Series是一种一维数组型对象,与Numpy类似,并包含数据标签(索引)
Series对象
obj = pd.Series([1,2,3,4,5,6])
obj
0 1
1 2
2 3
3 4
4 5
5 6
dtype: int64
#查看Series值
obj.values
array([1, 2, 3, 4, 5, 6], dtype=int64)
#查看Series索引
obj.index
RangeIndex(start=0, stop=6, step=1)
#创建Series还可以指定索引
obj = pd.Series([1,2,3,4],index=['a','b','c','d'])
obj
a 1
b 2
c 3
d 4
dtype: int64
#使用字典生成Series 字典key为索引,字典value为值
score = {
'英语':80,'数学':90,'语文':70}
obj = pd.Series