标签: python d3.js matplotlib web mpld3
我正在使用matplotlib来创建这样的情节:
plot = plt.plot(data[[x]], data[[y]], 'o-')
然后,我使用d3.js
visualization_html = mpld3.fig_to_html(fig)
结果:Plot
有时,情节的可读性不是很好,因为轴需要单独且灵活的拉伸或收缩。有可能缩放或移动画布 - 但我怎么能通过用户输入(即鼠标手势)实现拉伸和收缩?