下面的例子产生了一个可以用 显示的动画图形jupyter notebook
,但是在jupyter-lab
图形中没有显示出来。
%pylab inline
import plotly.express as px
gapminder = px.data.gapminder()
px.scatter(gapminder, x="gdpPercap", y="lifeExp", animation_frame="year", animation_group="country",
size="pop", color="continent", hover_name="country",
log_x=True, size_max=55, range_x=[100,100000], range_y=[25,90])
使用 plotly 4.0.0 和 plotly_express 0.4.0。
知道可能出了什么问题吗?