I try to build a graphy with one x-axis and two y-axes, with all axes comming from a dataframe (similar to the graphs here). Here are my example data:
import pandas as pd
df = pd.DataFrame(data={'year': [2000, 2001, 2002],
'deaths': [327, 456, 509],
'cheese': [13.5, 13.7, 13.8]})
I only found questions covering multiple lines based on a categorical variable (what I don't need) or more than two axis with an answer I, as a beginner, don't understand.