16

我正在尝试使用 gnuplot v4.4 绘制一个包含虚线和实线的图形。代码是:

set term postscript eps enhanced color
set style line 1 linetype 1 lw 2
set style line 2 linetype 1 lw 2 linecolor rgb 'green'
set style line 3 linetype 1 lw 2 linecolor rgb 'blue'
set style line 4 linetype 4 lw 2 linecolor rgb 'red'
set style line 5 linetype 3 lw 2 linecolor rgb 'blue'

set border lw 3
set xtics font ',18'
set ytics font ',18'
set output 'roc.ps'
set key right bottom
plot 'roc_fpdock_isc_test' u 1:2 w l ls 1 title "Full optimization, test set" ,x w l ls 2 title "Random", 'roc_fpdock_isc_training' u 1:2 w l ls 3 title "Full optimization, training set", 'roc_mini_pep_sc_training' u 1:2 w l ls 4 title "Minimization only, training set", 'roc_mini_pep_sc_test' u 1:2 w l ls 5 title "Minimization only, test set"

问题是,我无法将其绘制为 png。当我将set term指令更改为:set term png enhanced我只得到连续的线条。知道出了什么问题吗?

4

2 回答 2

26

事实证明,我似乎也无法在png终端中看到虚线(带有 GD 后端的虚线)。但是,如果您有 cairo 终端,则可以获得带有虚线的 png(假设您选择了适当的线型)。

set term pngcairo dashed
set output "foo.png"
test
!display foo.png
!rm foo.png

顺便说一句,test查询特定终端的行为非常棒。

于 2012-09-26T12:17:29.437 回答
2

您在 pngcairo 中有 dashtype 的 dt 选项。传说在这里:

传奇

例如

set style line 5 linetype 3 dt 5 lw 3 linecolor rgb 'green' 

给出 dashtype 5

于 2017-08-09T11:14:36.623 回答