Gnuplot tends to clutter the x-axis in timeseries plots. See the following image for an example of labels with narrow spacing:

Is there a way to make gnuplot avoid such narrow spacing? Preferably this should be done within the gnuplot script to generate the plot.
I generated the plot with the following gnuplot script and a file of random data:
set terminal png
set output "plot.png"
set timefmt "%s"
set xdata time
set xlabel "time"
set ylabel "Random Data"
set boxwidth 600
set style fill solid 0.5
set key below
plot "random.dat" using 1:2 w boxes title ".60"
Note: I am using Gnuplot 4.6.
EDIT
- Writing less times should be sufficient for this.
- An example file to produce the plot is available at http://pastebin.com/w0kia7Dt