Suppose I need to plot a dataset like below:
set.seed(1)
dataset <- sample(1:7, 1000, replace=T)
hist(dataset)
As you can see in the plot below, the two leftmost bins do not have any space between them unlike the rest of the bins.

I tried changing xlim, but it didn’t work. Basically I would like to have each number (1 to 7) represented as a bin, and additionally, I would like any two adjacent bins to have space beween them…Thanks!
The best way is to set the
breaksargument manually. Using the data from your code,gives the following plot:
The first part,
rep(1:7,each=2), is what numbers you want the bars centered around. The second part controls how wide the bars are; if you change it toc(-.49,.49)they’ll almost touch, if you change it toc(-.3,.3)you get narrower bars. If you set it toc(-.5,.5)then R yells at you because you aren’t allowed to have the same number in yourbreaksvector twice.Why does this work?
If you split up the breaks vector, you get one part that looks like this:
and a second part that looks like this:
When you add them together, R loops through the second vector as many times as needed to make it as long as the first vector. So you end up with
Thus, you have one bar from 0.6 to 1.4–centered around 1, with width 2*.4–another bar from 1.6 to 2.4 centered around 2 with with 2*.4, and so on. If you had data in between (e.g. 2.5) then the histogram would look kind of silly, because it would create a bar from 2.4 to 2.6, and the bar widths would not be even (since that bar would only be .2 wide, while all the others are .8). But with only integer values that’s not a problem.