“Fonctionnalités hautement corrélées Python” Réponses codées

Fonctionnalités hautement corrélées Python

# 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)]

df.drop(to_drop, axis=1, inplace=True)
Xanthous Xenomorph

Fonctionnalités hautement corrélées Python

# 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)]
Xanthous Xenomorph

Réponses similaires à “Fonctionnalités hautement corrélées Python”

Questions similaires à “Fonctionnalités hautement corrélées Python”

Plus de réponses similaires à “Fonctionnalités hautement corrélées Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code