I have a Pandas DataFrame which resembles:
pd.DataFrame({
'el1': {
'steps': [0,1,2],
'values': [10, 9, 8]
},
'el2': {
'steps': [0,1,2],
'values': [1, 2, 8]
},
'el3': {
'steps': [0,1,2],
'values': [5, 9, 4]
}
})
el1 el2 el3
steps [0, 1, 2] [0, 1, 2] [0, 1, 2]
values [10, 9, 8] [1, 2, 8] [5, 9, 4]
what would be the best way to try and use Panda's DataFrame plot to get some simple line plots with values on the y axis and steps on the x axis? (e.g. there should be three lines)
