我已经建立了这个互动的情节,我想保存到html。这是我用来构建它的代码。
def vis_pcs(M, a, b, label='album', prefix='PC', symbol=None):
fig = px.scatter(M, prefix + str(a), prefix + str(b),
color=label,
hover_name='album',
hover_data=['genre', 'song_title'],
marginal_x='box',
symbol=symbol,
height=1000)
fig.show()
我不确定如何保存它我使用了以下代码行来保存它,但每行都会抛出一个错误:
fig.write_html(data_path+"/genre.html")
import plotly.io as pio
pio.write_html(fig, file=data_path+"/genre.html", auto_open=True)
plotly.offline.plot(fig, filename= data_path+"/genre.html")
任何帮助将不胜感激的数据,以再现图形它很难给出,但它是一个散点图
暂无答案!
目前还没有任何答案,快来回答吧!