I’m trying to plot also the normal distribution over that plot. Using python and seaborn you can simply do that: sns.distplot(df_train['SalePrice'], fit=norm);
I’m also trying to plot the probability plot. In python i did res = stats.probplot(df_train['SalePrice'], plot=plt)
getting something like this
So, is there a way in Julia to obtain the same thing?
Thanks.
I’m no sure if Plots.jl allows you to determine the z-order of lines and areas, but you can always make the histogram semi transparent with the alpha keyword