0

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?

4

1 に答える 1

1

あなたの質問の最初の部分について... 2つのリストを互いに機能させてプロットする(相関)非常に明確な例がある次のWebサイトを参照したいと思います。

質問の 2 番目の部分 (stdev.) を詳しく説明 (明確化) していただけますか?

データセットに標準偏差をプロットしますか (定数は 1 ですか?)。
または、相関関数の標準偏差をプロットしますか (統計についてはよくわかりませんが、それが意味があるかどうかはわかりません :D ) ?

よろしく、

M.

于 2013-03-21T17:10:43.230 に答える