【发布时间】:2018-09-24 09:49:57
【问题描述】:
我已经搜索这个主题几个小时了,但仍然无法让我的代码工作。我正在尝试从使用 pandas 创建的数据透视表生成热图。我对编码很陌生,可能没有使用正确的术语,但我会尽力而为。
我的桌子是这样的:
它还有更多的行。我正在尝试用 y 轴上的国家、x 上的 4 种所有权类型以及用作 z 值的数值生成一个绘图热图。我遇到了很多错误,但我想我已经接近了,因为它到达了我的最后一行并说“TypeError:'DataFrame' 类型的对象不是 JSON 可序列化的。”我已经搜索了这个错误,但找不到任何我能理解的东西。我这样设置表格,但在 z、x 和 y 输入方面遇到问题:
data = [go.Heatmap(z=[Country_Ownership_df[['Company Owned', 'Franchise', 'Joint Venture', 'Licensed']]],
y=[Country_Ownership_df['Country']],
x=['Company Owned', 'Franchise', 'Joint Venture', 'Licensed'],
colorscale=[[0.0, 'white'], [0.000001, 'rgb(191, 0, 0)'], [.001, 'rgb(209, 95, 2)'], [.005, 'rgb(244, 131, 67)'], [.015, 'rgb(253,174,97)'], [.03, 'rgb(249, 214, 137)'], [.05, 'rgb(224,243,248)'], [0.1, 'rgb(116,173,209)'], [0.3, 'rgb(69,117,180)'], [1, 'rgb(49,54,149)']])]
layout = go.Layout(
margin = dict(t=30,r=260,b=30,l=260),
title='Ownership',
xaxis = dict(ticks=''),
yaxis = dict(ticks='', nticks=0 )
)
fig = go.Figure(data=data, layout=layout)
#iplot(fig)
plotly.offline.plot(fig, filename= 'tempfig3.html')
这可能是一项相当简单的任务,我只是没有学到太多的编码知识,感谢您提供的任何帮助。
【问题讨论】:
标签: python pandas dictionary plotly heat