Gnuplot Boxplot:异常值应该看起来像一个空圆圈

时间:2015-02-21 12:29:58

标签: gnuplot boxplot

我想用Gnuplot 4.6,终端Cairolatex创建boxplot。异常值应该与http://de.wikipedia.org/wiki/Boxplot

类似

所以我需要一个圆圈没有一个点在中心。我的代码是

set terminal cairolatex pdf standalone header \
"\\usepackage[T1]{fontenc}"
set output 'example.tex'
set yrange [0:25]
set ylabel "y"
set xlabel "x"
set xrange [0:2]

set datafile separator " "
set style fill empty
set style data boxplot
set style boxplot outliers pointtype 6

plot "example.csv" using (1):1 notitle

这给了我这个点缀的异常值。 Link to example.png。在这里它仍然可以,但如果有异常重叠的点是非常烦人的。

有没有人提示我?我尝试了其他点类型(19,71)和正方形,但点不会隐藏。谢谢!

0 个答案:

没有答案
相关问题