Hello experts,
I have a sales data with values from 1 to 3000000. Most points are in the interval of [1,800] and thus, it has a very long tail.
If I use the following code to create a histogram, the graph looks like not good. Can anyone help with it? I guess it is caused by too speaded values of the x axis? Could I create different bins with different wideth in a same graph?
If I plot a density distribution, ggplot2 seems not produce a normal graph as well.
ggplot(hist_data) +
geom_histogram(aes(x = sales), fill = "grey", color = "black")