Reputation: 5
I'm trying to print a scatter plot in Colab with data that has been pulled in okay. But I get
KeyError: 'Wavelength (nm)'
and a graph with no points on it
Upvotes: 0
Views: 243
Reputation: 1381
Does this work? (input your column names and plot kind instead of ...)
gaas.reset_index().plot(...)
Upvotes: 1