Is there a way to completely club the bars in Bar plot in go.Bar plot just like a Histogram?
I have a fitter.Fitter instance which does binning based on
np.histogram(data,bins=n_bins,density=True)
but the binning of go.Histogram is totally different and not the same as np.histogram. It says some “nice” binning or smth. I want to plot histogram based on np.histogram and based on documentation of histogram we can only do that using go.Bar chart but bar chart doesn’t club the bars without those murky black lines even with bargap = 0
and this is my histogram plot using go.Scatter with filling color till zero y
I would like to know if theres an simpler way to this and also if theres a way to club bar graphs without any gaps at all
Thankyou