How do I make Julia Plots with the Plotly backend give me a histogram with as many integer bins from to max value in the series while displaying all the x-axis tick marks for each bin?
using Plots
plotly()
age = 100*rand(1000,1)
histogram(age, bins=100)