How to eliminate the horizontal line when a range is set for a histogram in Julia Plots

44 Views Asked by At

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? enter image description here

0

There are 0 best solutions below