“Scikit Naucz się identyfikować wysoce skorelowane funkcje” Kod odpowiedzi

Jak wydrukować korelację z funkcją w Pyhton

df[df.columns[1:]].corr()['LoanAmount'][:]
Expensive Earthworm

Scikit Naucz się identyfikować wysoce skorelowane funkcje

# Create correlation matrix
corr_matrix = df.corr().abs()

# Select upper triangle of correlation matrix
upper = corr_matrix.where(np.triu(np.ones(corr_matrix.shape), k=1).astype(np.bool))

# Find index of feature columns with correlation greater than 0.95
to_drop = [column for column in upper.columns if any(upper[column] > 0.95)]
Calm Chinchilla

Odpowiedzi podobne do “Scikit Naucz się identyfikować wysoce skorelowane funkcje”

Pytania podobne do “Scikit Naucz się identyfikować wysoce skorelowane funkcje”

Więcej pokrewnych odpowiedzi na “Scikit Naucz się identyfikować wysoce skorelowane funkcje” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu