I have a dataset of used cars. I have made a histogram plot for the count of cars by their age (in months).
sns.distplot(df['Age'],kde=False,bins=6)
And the plot looks something like this:
Is there any way I can depict the frequency values of each bin in the plot itself
PS: I know I can fetch the values using the numpy histogram function which is
np.histogram(df['Age'],bins=6)
Basically I want the plot to look somewhat like this I guess so: