I am using Julia plots to construct a histogram. A pseudo code is given:
data = some data
b_range = range(0, 1, length=10)
histogram!(data, bins=b_range, normalize=:probability)
But I have a horizontal line above the x-axis. How can I eliminate it?
