【发布时间】:2021-05-04 07:47:51
【问题描述】:
Matplotlib 可以选择指定边缘颜色,例如 How to set the border color of the dots in matplotlib's scatterplots?
在 gnuplot 中,我使用它来解决它
array data[500]
do for [i=1:500] {data[i]=invnorm(rand(0))}
pl data ps 2 pt 7, "" ps 2 pt 6 lc "black"
但是,这需要对数据进行第二次循环(以及更多重复的输入,尤其是在涉及更复杂的列操作时)。况且,传说也不尽如人意。
如何修复图例?还是有更好的方法?
(例如,对于 postscript 终端,解决方案是解析输出,set out "| sed '/ hpt 0 360/s/ Pnt//; s,hpt.*arc fill, 2 copy & stroke LTb Circle, ' > out.ps。)
【问题讨论】:
标签: gnuplot