I've created the following plotly plot like this:
import plotly
labels = ['Oxygen', 'Hydrogen', 'Carbon_Dioxide', 'Nitrogen']
values = [4500, 2500, 1053, 500]
trace = plotly.graph_objs.Pie(labels=labels, values=values)
plotly.offline.plot([trace], filename='basic-pie-chart')
Then I created the html as such:
print(plotly.offline.plot([trace], include_plotlyjs=False, output_type='div'))
Running the code above generates an .html file that I can view in my browser.
Is there a way to display the .html file in the middle of a markdown file on my GitHub Pages, so I can use the interactive features of plotly?
