How to enable plotly chart rendering on FastPagesA tutorial to hack nbdev and fastpages to enable plotly chart rendering. Apr 24, 2020 • 1 min read jupyter plotly visualization Imports Plotly Express Imports import pandas as pd import plotly import plotly.express as px from IPython.display import display_html, HTML from io import StringIO Plotly Express df = px.data.iris() fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species") HTML(fig.to_html(include_plotlyjs='cdn')) Please enable JavaScript to view the comments powered by Disqus.