I recently uploaded a jupyter notebook to github that contains some plotly graphs, however, although you can see the code, you can't see the graphs.
Here is the code of one of the graphs in the notebook:
#Pie chart that shows the percentage of top 50 (according to pp90min) per team
top_50_players_injured_pp90min = draft_selection_stats_injured.sort_values('points_per_90_minutes_played', ascending=False).head(50)
team_prop_pp90min_injured = top_50_players_injured_pp90min.groupby('team').count().reset_index()
fig = px.pie(team_prop_pp90min_injured, values='player', names='team', title='Top 50 Injured/Rotating/Transferred Players (pp90min) Per Team')
fig.show()
What should I do to display the graph in the notebook? I was thinking of uploading the notebook as an html file, but it didn't work either because the file was too large.
Thanks for helping out!