码迷,mamicode.com
首页 > 其他好文 > 详细

gnuplot使用

时间:2015-01-13 21:14:01      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

直接用yum安装gnuplot即可,例如

sudo sh -c "yum install gnuplot.x86_64 "

安装以后就可以使用了

编写gnuplot脚本

1 # grphist.conf
2 set terminal png truecolor
3 set output "grpimage.png"
4 set grid
5 set xtic rotate by 90
6 set style data histograms
7 set style fill solid 1.00 border -1
8 plot "data.txt"  using 2:xtic(1) title "course"

第二行首先设置终端类型,这告诉 gnuplot 生成的图像采取png格式;

第三行设置输出文件名称

第四行使用 grid 选项让 gnuplot 在图形上加上网,在查看图形时,使用网格作为参照点也非常有用。

第五行对x轴旋转90度

第六行告诉 gnuplot 应该使用柱状图生成图形

第七行 gnuplot 按以下次序绘制框的边框:顶、底、左和右,值分别为 1、2、4、8。要想删除一条或多条边框线,只需提供相应值的和。在这个示例中,使用 -1 选项删除底部边框线。指定 fill 选项就会用默认颜色填充框

第八行 第 2 列中的数据使用第 1 列(x 数据)作为参照

 

data.txt中数据为

chinese    77
math    100
geography    88

利用管道执行

cat ./histograms.plt |gnuplot

最后生成图像

技术分享

 

gnuplot使用

标签:

原文地址:http://www.cnblogs.com/laodageblog/p/4222392.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!