Is there a documentation, paper etc. where it is explained why scikit-learn does not provide p-values/confidence levels (1, 2, 3, 4)? Note: I'm not asking about opinions, but about documentation. For example the R
package lme4
does not provide p-values either, but has a FAQ point about this. On the official scikit-learn website I found no explanation for this desicion.
Asked
Active
Viewed 323 times
2

Qaswed
- 121
- 3
2 Answers
1
There is a scoring function in sklearn package which is used in a feature selection procedure. This function first computes F-score and then converts it to p-value.

Sayali Sonawane
- 2,051
- 3
- 12
- 13
0
Several feature selection techniques return p values, e.g. ANOVA, chi2,..:
https://scikit-learn.org/stable/modules/generated/sklearn.feature_selection.f_classif.html

methus
- 111
- 5