Sud*_*shu 4 data-visualization plotly kaggle
我正在学习plotly某人的代码,但是每次当我尝试运行特定代码来查看目标列以查看数据集的平衡程度时,都会弹出错误消息,并且会话会被中断。
弹出错误信息:
加载笔记本时发生错误:未捕获错误:“plotly”的脚本错误http://requirejs.org/docs/errors.html#scripterror
给我错误的代码
fig = px.histogram(
train_df,
x=target_column,
color=target_column,
color_discrete_sequence=px.colors.qualitative.G10,
)
fig.update_layout(
title_text='Target distribution', # title of plot
xaxis_title_text='Value', # xaxis label
yaxis_title_text='Count', # yaxis label
bargap=0.2, # gap between bars of adjacent location coordinates
paper_bgcolor=primary_bgcolor,
plot_bgcolor=primary_bgcolor,
)
fig.update_xaxes(
title='Target class',
categoryorder='category ascending',
)
fig.show()
Run Code Online (Sandbox Code Playgroud)
访问文档后,我了解到这是与浏览器相关的错误,但我不明白如何防止它。我正在使用chrome浏览器和kaggle内核。
我遇到过同样的问题。
加载 Plotly 的源似乎存在问题。更改笔记本模式可能会有所帮助。
from plotly.offline import plot, iplot, init_notebook_mode
init_notebook_mode(connected=True)
Run Code Online (Sandbox Code Playgroud)
摘自这里:
https://www.kaggle.com/product-feedback/138599