“Selección de características Python” Código de respuesta

Selección de características Python

from sklearn.feature_selection import VarianceThreshold
sel = VarianceThreshold(threshold=(.05))
X = sel.fit_transform(X)
JJSSEECC

Cómo presentar una selección en Python

>>> from sklearn.datasets import load_iris
>>> from sklearn.feature_selection import SelectKBest
>>> from sklearn.feature_selection import chi2
>>> X, y = load_iris(return_X_y=True)
>>> X.shape
(150, 4)
>>> X_new = SelectKBest(chi2, k=2).fit_transform(X, y)
>>> X_new.shape
(150, 2)
Coding boy Hasya

Respuestas similares a “Selección de características Python”

Preguntas similares a “Selección de características Python”

Más respuestas relacionadas con “Selección de características Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código