我正在尝试使用 xkcd 主题将 matplotlib 导入到 html。我的代码如下(没有数据,只是一个无花果)
fig = plt.figure(facecolor = '#eee8d5')
#plt.matplotlib.rcdefaults()
with plt.xkcd():
ax = fig.add_subplot(111)
ax.set_axis_bgcolor('#eee8d5') #set_color('#fdf6e3')
ax.title.set_color('#d33682') # Magenta
ax.tick_params(axis='x', colors='#657b83')
ax.tick_params(axis='y', colors='#657b83')
ax.spines['bottom'].set_color('#657b83')
ax.spines['left'].set_color('#657b83')
ax.spines['right'].set_color('none')
ax.spines['top'].set_color('none')
ax.set_title('Title', fontsize = 18);
html = mpld3.fig_to_html(fig)
Html_file= open("CumPrctWordFrq.html","w")
Html_file.write(html)
Html_file.close()
到目前为止一切顺利——一切都在 python 笔记本中正确呈现。但是,当我将 html 粘贴到网站(方形空间)上时,无花果会丢失所有 xkcd 属性。最终我想让这个互动。这个想法最终是产生一个 xkcd -> solarized -> 交互式情节。