I am trying to play with some online data, and having some trouble plotting it due to an \'Attribute\' error in the plot function
# Reading data from an onli
Use the DataFrame plot method:
walking_data.plot('Seq', ,'Ax')
plot is getting confused because you're passing it strings, not numbers. If you convert them to (say) floats:
plot
float
walking_data = walking_data.astype(float)
Then you'll get