こつこつPython 【毎日Python】Pythonでデータフレームの要素どうしの相関を計算する方法|DataFrame.corr import pandas as pd df=pd.read_csv('/content/sample_data/california_housing_test.csv') df.head() df.corr() Pythonで各カラム間の... 2021.10.11 こつこつPython