So if i have plotted some data in gnuplot as a boxplot (set style data gnuplot), and I have outliers having the same value, then they are plotted as dots horizontally at the same place.
How can I set that horizontal distance?
So for example I have the datafile data.dat
1
1
1
1
1
1
1
1
1
1
1
1
9
9
and plot it using
set style data boxplot
plot 'data.dat' using (1):1
set yrange [0:10]
How can I set then the distance between the two points at y=9?

plot 'data.dat' using (1):1andplot 'data.dat' using (1):1 pointsize 1. But I suspect this shouldn't happen and is a bug... - Christoph