This seems like a very simple thing but I can´t make it. I have panda frame like this http://prntscr.com/ko8lyd and I now want to plot one column on X-axis and another column on Y-axis. Here is what i try
import matplotlib.pyplot as plt
x = ATR_7
y = Vysledek
plt.scatter(x,y)
plt.show()
the is the error i am getting
<ipython-input-116-5ead5868ec87> in <module>()
1 import matplotlib.pyplot as plt
----> 2 x = ATR_7
3 y = Vysledek
4 plt.scatter(x,y)
5 plt.show()
where am I going wrong?