Hi how’s it going?
I have a numerical column that I’d like to bin into these percentile bin edges:
percentiles = [.05,.35,.8,.95]
In Python it’s as easy as pd.qcut. I was wondering what the simplest way would be for me to do this - I’ve found Julia solutions where it automatically creates the bins for you, but I would like something where I can manually set the bin edges.
Thank you!