I am rather new to Python. I have one column of data x and another columns of data y (They're both float). I've saved them both as lists a and b.
I wanted to plot the correlation and also the standard deviation between 10 rows of a and b. So in essence, I want to plot:
|
|
x | corr(x,y), stdev(x,y)
|
|
|_________
y
Can someone please tell me how to do this in Python?