I want to show the distribution of the dataframe on a chart, something similar to the box chart, but for the percentile specified by me.
Could someone recommend if there is a way to do that?
Assuming this is the dataframe
df = pd.DataFrame(np.random.randint(1,10,1000),columns=['A']).pct_change().dropna()
np.percentile(df,[25,50,75,100]) will give me the output
array([-0.5, 0. , 1. , 8. ])
which is what I want to show in something similar to boxchart any suggestions?