hdonghun / Python_analysis-visualization

practice Kaggle study Myself
1 stars 0 forks source link

상관계수, count, max, min, mean, stdmselect_dtypes #4

Open hdonghun opened 2 years ago

hdonghun commented 2 years ago

상관계수 r값은 X와 Y가 완전히 동일하면 +1, 전혀 대르면 0, 반대방향으로 완전히 동일 하면 -1을 가진다. 결정계수(coefficient of determination)는 r**2로 계산하며 이것은 X로부터 Y를 예측할 수 있는 정도를 의미한다.

DataFrame.count: Count number of non-NA/null observations. DataFrame.max: Maximum of the values in the object. DataFrame.min: Minimum of the values in the object. DataFrame.mean: Mean of the values. DataFrame.std: Standard deviation of the observations. DataFrame.select_dtypes: Subset of a DataFrame including/excluding columns based on their dtype.