Is there a way of carrying out preprocessing using quantile transformation in river? #692
Answered
by
MaxHalford
medha-chippa
asked this question in
Q&A
-
Can preprocessing using quantile transformation be performed using river? In other words, can data within a stream be transformed using quantile transformation? |
Beta Was this translation helpful? Give feedback.
Answered by
MaxHalford
Aug 23, 2021
Replies: 1 comment 3 replies
-
Nope, not at the moment. We have a Although, have you tried |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
MaxHalford
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nope, not at the moment. We have a
stats.Quantile
class to compute online quantiles, so this should be totally doable. Pull requests are welcome!Although, have you tried
preprocessing.StandardScaler
? I'd be curious to see a case where quantile transformation is really necessary.