i have R geom_tile
that generate a geom_tile
graph exactly the way I want.
but the problem is that the axis step size is so big eg(4000 - 8000 - 12000 - ...)
I tried scale_x_continuous('Xaxis',limits = c(...))
and scale_x_continuous(breaks=1:10)
but it only limits the data.
What should I do to minimize the size of this step on the axis?
eg (500 - 1000 - 1500 - 2000 - 2500 ....etc)
thankk you
source share