我使用(Python 2.7.15,pandas == 0.23.1,ipython == 5.7.0,web.py == 0.39)
我的问题:是否可以通过web.py可视化我的熊猫df。 我只想显示一行df作为简单的折线图。
代码:
htmldf = df.to_html(escape=False)
urls = (
'/view1/', 'index1'
)
class index1:
def GET(self):
return htmldf
df:
index data month
1 1,2,3,4,5 01,02,03,04,05
2 6,7,8,9,10 01,02,03,04,05