Patrzę na ten samouczek: https://www.dataquest.io/mission/75/improving-your-submission
W sekcji 8, znajdując najlepsze funkcje, pokazuje następujący kod.
import numpy as np
from sklearn.feature_selection import SelectKBest, f_classif
predictors = ["Pclass", "Sex", "Age", "SibSp", "Parch", "Fare", "Embarked", "FamilySize", "Title", "FamilyId"]
# Perform feature selection
selector = SelectKBest(f_classif, k=5)
selector.fit(titanic[predictors], titanic["Survived"])
# Get the raw p-values for each feature, and transform from p-values into scores
scores = -np.log10(selector.pvalues_)
# Plot the scores. See how "Pclass", "Sex", "Title", and "Fare" are the best?
plt.bar(range(len(predictors)), scores)
plt.xticks(range(len(predictors)), predictors, rotation='vertical')
plt.show()
Co robi k = 5, ponieważ nigdy nie jest używane (wykres nadal pokazuje wszystkie funkcje, niezależnie od tego, czy używam k = 1, czy k = „wszystkie”)? W jaki sposób określa najlepsze funkcje, czy są one niezależne od metody, którą chcemy zastosować (regresji logistycznej, losowych lasów itp.)?