pandas自学笔记

pandas自学笔记,第1张

pandas自学笔记

参考资料:

黑马程序员相关课程 创建

# 通过列表创建Series
a = [1, 2, 3, 4, 5]
t = pd.Series(a)
print(t)
# 0    1
# 1    2
# 2    3
# 3    4
# 4    5
# dtype: int64

# 指定索引
a = [1, 2, 3, 4, 5]
t = pd.Series(a, index=list("abcde"))
print(t)
# a    1
# b    2
# c    3
# d    4
# e    5
# dtype: int64

# 通过字典创建Series
a = {"姓名": "张三", "年龄": "17", "性别": "男"}
t = pd.Series(a, index=["姓名", "年龄", "身高"])
print(t)
# 姓名     张三
# 年龄     17
# 身高    NaN		# 索引匹配失败的元素为NaN
# dtype: object

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5712000.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存