I have the following code:
import pandas as pd
import plotly.express as px
fig = px.area(df, x="Decade", y="Financial_Impact", color="Disaster_Type", title="Financial Impact, World, RCP = 2.6", color_discrete_sequence=["#FDB714", "#009CA7", "#F05023"])
fig.show()
Generating the following area chart:
Now I have a variable called C providing a temperature (°C) for each decade. How could I add a line showing C, with a scale relative to C on the right of the chart?
Here are the first five rows of the dataset:
df.head()



