首页 > 编程语言 > 详细

python -- 解决If using all scalar values, you must pass an index问题

时间:2018-12-23 12:33:05      阅读:2664      评论:0      收藏:0      [点我收藏+]

【问题描述】

在将dict转为DataFrame时会报错:If using all scalar values, you must pass an index

例如:

summary = pd.DataFrame({key:value for key,value in test.items()if key in index}) #查看汇总表情况

【解决办法】

添加参数:index = [0]

summary = pd.DataFrame({key:value for key,value in test.items()if key in index},index = [0]) #查看汇总表情况

  

python -- 解决If using all scalar values, you must pass an index问题

原文:https://www.cnblogs.com/nxf-rabbit75/p/10163735.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!