Professor, you can put a parameter in your histogram with just a line of code: plt.axvline(x=np.percentile(por, 25), ls="--", color='black', label='p25') For horizontal lines will be like this: plt.axhline(y=np.mean(por), ls="-", color='black', label="mean") Regards MDS
Professor, you can put a parameter in your histogram with just a line of code:
plt.axvline(x=np.percentile(por, 25), ls="--", color='black', label='p25')
For horizontal lines will be like this:
plt.axhline(y=np.mean(por), ls="-", color='black', label="mean")
Regards
MDS
This is awesome. Thanks!