2020-06-02
阅读量:
984
pandas中Series的创建方式
Series序列的创建主要有三种方式:
1)通过一维数组创建序列
import
numpy
as
np,
pandas
as
pd
arr1
=
np.arange(10)
arr1
type(arr1)
s1
=
pd.Series(arr1)
s1
type(s1)
2)通过字典的方式创建序列
dic1
=
{'a':10,'b':20,'c':30,'d':40,'e':50}
dic1
type(dic1)
s2
=
pd.Series(dic1)
s2
type(s2)
3)通过DataFrame中的某一行或某一列创建序列
0.0000
0
0
关注作者
收藏
评论(0)
发表评论
暂无数据
推荐帖子
0条评论
0条评论
3条评论