This might be fairly simple but yet i cant seem to find out how to do it.
I got a nice plot with a group of lines of values in it. 
The y represents an amount, the x represents dates.
The problem is simple, there so many dates that they are printed on top of each other.

The code :
sp = rbind(sp1,sp2,sp3,sp4)
pm = ggplot(data = sp, aes(x = date, 
                                 y = amount, 
                                 colour=sm, 
                                 group=sm)) + 
        geom_line()
How can I make the x axis only print for example every 5 dates instead of all of them? Thanks in advance!
 
     
    