###导入包
import numpy as np
import pandas as pd
from pandas import Series,DataFrame
###Series是一种类似与一维数组的对象,由下面两个部分组成:
- values:一组数据(ndarray类型)
- index:相关的数据索引标签
- 由列表或numpy数组创建
- 默认索引为0到N-1的整数型索引
s=Series(data=[1,2,5,4,7])
s
0 1
1 2
2 5
3 4
4 7
dtype: int64
s1=Series(data=np.random.randint(1,100,5))
s1
0 7
1 50
2 24
3 81
4 49
dtype: int32
指定行索引
s=Series(data=[1,2,5,4,7],index=['A','B','C','D','E'])
s
A 1
B 2
C 5
D 4
E 7
dtype: int64
###使用字典创建
dict={
'语文':88,
'数学':99,
'英语':100
}
s2=Series(data=dict)
s2
数学 99
英语 100
语文 88
dtype: int64
###Series的索引和切片
可以使用中括号取