-
As per title, I'm really interested in getting the p-values when select_features decides on top X features and rank orders them. I couldn't find a way - my apologies if this is somewhere in the manual |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @TheFilS! |
Beta Was this translation helpful? Give feedback.
-
To anyone who many run into the same problem as me, I had luck explicitly converting my array to a series (I didn't have to do this to call "extract_features" but had to do it to get "calculate_relevance_table" to work Example: |
Beta Was this translation helpful? Give feedback.
To anyone who many run into the same problem as me, I had luck explicitly converting my array to a series (I didn't have to do this to call "extract_features" but had to do it to get "calculate_relevance_table" to work
Example:
serser = pd.Series(serclass)