I am using Spyder IDE. I am trying to get my plots to show but they won't show for some reason. X and Y axes are values from 2 separate dataframes. Code is as below.
import plotly.graph_objects as go
fig = go.Figure()
fig.add_trace(go.Scatter(x=AsthmaCases.DataValue, y=dfCombinedToPlot.CasesPer100kPop, mode='lines', name='Asthma'))
fig.show()
What is wrong or am I wrong in expecting fig.show() to have displayed my plot?