I have a dataframe hour_dist that shows the hour a customer showed up to a particular location.
hour_dist.sample(5)
Location Hour
88131 1233000000000000 21
111274 1233000000000000 0
81126 2991000000000000 23
104181 1232000000000000 22
55719 1232000000000000 15
I'm trying to plot this data with Seaborn to visualize a ridgeline plot (https://seaborn.pydata.org/examples/kde_ridgeplot.html).
It should essentially show the hour distribution by each location. Here's an example of what it looks like:
With hour_dist, I've been trying, unsuccessfully, to plot the locations on the y axis and the hour on the x axis.