pandas中Series和Dataframe数据类型互转

pandas中Series和Dataframe数据类型互转

pandas中Series和Dataframe数据类型互转

pandas中series和dataframe数据类型互转

  • 利用to_frame()实现Series转DataFrame
  • 利用squeeze()实现单列数据DataFrame转Series
s = pd.Series([1,2,3])
s
0    1
1    2
2    3
dtype: int64
s = s.to_frame(name="列名")
s
列名
0 1
1 2
2 3
s.squeeze()
0    1
1    2
2    3
Name: 列名, dtype: int64

pandas中Series和Dataframe数据类型互转

到这里就结束了,如果对你有帮助,欢迎点赞关注评论,你的点赞对我很重要

上一篇:通过定义UnityContainer扩展变”Explicit Interception”为”Automatic Interception”


下一篇:线性代数