I am new to programming, so forgive the question if it seems simple.
I am attempting to import an interactive graph I plotted using the plotly graphing library and display it in the Jupyter notebook.
The graph is saved as an html file.
So far, I have written out this bit of code:
import plotly
import os
os.chdir(r'C:\Users\alsha\Documents\CE-CERT - SIGI\CMC Data')
from IPython.display import HTML
HTML(filename="./CopperMountainCollegeEntireInterval.html")
I do not know what code to write to display the actual graph, I would appreciate any help I receive.