I want to plot three lines for Turkey, the UK and OECD through the years but those countries are not columns so I am suffering finding a way plot them.
I get this df via
df = df.loc[df["Variable"].eq("Relative advantage") & df["Country"].isin(["United Kingdom", "Türkiye", "OECD - Total"])]
| Year | Country | Value | 
|---|---|---|
| 1990 | Turkiye | 20 | 
| 1980 | UK | 34 | 
| 1992 | UK | 32 | 
| 1980 | OECD | 29 | 
| 1992 | OECD | 23 | 
 
     
    