パンダの2つの列間の相関関係を取得するにはどうすればよいですか?
.corr()を使用できます パンダの2つの列間の相関を取得するメソッド。例を見て、この方法を適用する方法を見てみましょう。
ステップ
- 2次元、サイズ変更可能、潜在的に異種の表形式データ、 dfを作成します 。
- 入力DataFrame、 dfを印刷します 。
- 2つの変数col1を初期化します およびcol2 、そしてそれらに相関関係を見つけたい列を割り当てます。
- col1間の相関関係を見つけます df [col1] .corr(df [col2])を使用してcol2を作成し、相関値を変数corrに保存します。
- 相関値corrを出力します。
例
import pandas as pd df = pd.DataFrame( { "x": [5, 2, 7, 0], "y": [4, 7, 5, 1], "z": [9, 3, 5, 1] } ) print "Input DataFrame is:\n", df col1, col2 = "x", "y" corr = df[col1].corr(df[col2]) print "Correlation between ", col1, " and ", col2, "is: ", round(corr, 2) col1, col2 = "x", "x" corr = df[col1].corr(df[col2]) print "Correlation between ", col1, " and ", col2, "is: ", round(corr, 2) col1, col2 = "x", "z" corr = df[col1].corr(df[col2]) print "Correlation between ", col1, " and ", col2, "is: ", round(corr, 2) col1, col2 = "y", "x" corr = df[col1].corr(df[col2]) print "Correlation between ", col1, " and ", col2, "is: ", round(corr, 2)
出力
Input DataFrame is: x y z 0 5 4 9 1 2 7 3 2 7 5 5 3 0 1 1 Correlation between x and y is: 0.41 Correlation between x and x is: 1.0 Correlation between x and z is: 0.72 Correlation between y and x is: 0.41
-
Androidで2つの日付の違いを取得するにはどうすればよいですか?
この例は、Androidで2つの日付の違いを取得する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="https://sche
-
Androidで2つの地理的な場所の間の距離を取得するにはどうすればよいですか?
この例は、Androidで2つの地理的な場所の間の距離を取得する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http: