Gnuplot功能总结

3360阅读 0评论2014-04-25 bl竹子
分类:Python/Ruby

最近一直在用Gnuplot画图,进行下载总结:

set multiplot               %设置为多图模式
set origin 0.0,0.5        %设置图的坐标原点的位置
set size 0.5,0.5           %设置图的大小

set xlabel ‘ ’ font 'Times-Roman, 15' %设置横坐标字体
set ylabel ‘ ’ font 'Arial, 15' %设置纵坐标字体

set key box                 %给title加上框框
set key left/right/center%设置title的位置
 set key center at x,y    %功能同上
set key width n              %设置title框的宽度
set key spacing 0.8      %设置title的行间距

replot                        %重画
先写这么多,以后用到了再加
本文出处:http://blog.chinaunix.net/uid-28311809-id-4226961.html
上一篇:GDA和Logistic方法的区别及相应的python代码
下一篇:朴素Bayes法和实现代码(python)