Linux使用gnuplot将数据生成图

10 篇文章 0 订阅

gnuplot是由Colin Kelly和Thomas Williams于1986年开始开发的科学绘图工具,支持二维和三维图形。它的功能是把数据资料和数学函数转换为容易观察的平面或立体的图形,它有两种工作方式,交互式方式和批处理方式,它可以让使用者很容易地读入外部的数据结果,在屏幕上显示图形,并且可以选择和修改图形的画法,明显地表现出数据的特性。
在做性能评测的时候,可能会使用到这个功能。这里通过分析一个例子来看。
从github上下载一个定时器源码

软件环境

安装好gnuplot工具:

sudo apt-get install gnuplot-qt

命令分析

解压缩执行:

abel@ubuntu:~/Downloads/timeout-master$ make bench-all
mkdir -p bench
cc -o bench/bench-wheel.so ./bench/bench-wheel.c -I. -DWHEEL_BIT=6 -DWHEEL_NUM=4 -O2 -march=native -g -Wall -Wextra -Wno-unused-parameter -Wno-unused-function -fPIC -shared -lrt
mkdir -p bench
cc -o bench/bench.so ./bench/bench.c -I. -DWHEEL_BIT=6 -DWHEEL_NUM=4 -O2 -march=native -g -Wall -Wextra -Wno-unused-parameter -Wno-unused-function -fPIC -shared -lrt
cd bench
lua /home/abel/Downloads/timeout-master/bench/bench-add.lua /home/abel/Downloads/timeout-master/bench/bench-wheel.so
mv bench/wheel-add.dat.tmp bench/wheel-add.dat
cd bench
lua /home/abel/Downloads/timeout-master/bench/bench-del.lua /home/abel/Downloads/timeout-master/bench/bench-wheel.so
mv bench/wheel-del.dat.tmp bench/wheel-del.dat
cd bench
lua /home/abel/Downloads/timeout-master/bench/bench-expire.lua /home/abel/Downloads/timeout-master/bench/bench-wheel.so
mv bench/wheel-expire.dat.tmp bench/wheel-expire.dat
mkdir -p bench
cc -o bench/bench-heap.so ./bench/bench-heap.c -I. -DWHEEL_BIT=6 -DWHEEL_NUM=4 -O2 -march=native -g -Wall -Wextra -Wno-unused-parameter -Wno-unused-function -fPIC -shared -lrt
cd bench
lua /home/abel/Downloads/timeout-master/bench/bench-add.lua /home/abel/Downloads/timeout-master/bench/bench-heap.so
mv bench/heap-add.dat.tmp bench/heap-add.dat
cd bench
lua /home/abel/Downloads/timeout-master/bench/bench-del.lua /home/abel/Downloads/timeout-master/bench/bench-heap.so
mv bench/heap-del.dat.tmp bench/heap-del.dat
cd bench
lua /home/abel/Downloads/timeout-master/bench/bench-expire.lua /home/abel/Downloads/timeout-master/bench/bench-heap.so
mv bench/heap-expire.dat.tmp bench/heap-expire.dat
cd bench
gnuplot /home/abel/Downloads/timeout-master/bench/bench.plt
mv bench/bench.eps.tmp bench/bench.eps
ps2pdf /home/abel/Downloads/timeout-master/bench/bench.eps bench/bench.pdf

耐心点看完这个中间的流程。
1.在里面将会编译出来堆,时间轮两种实现的so文件
2.通过lua脚本分别运行add,del,expire产生结果数据放到

wheel-add.dat
wheel-del.dat
wheel-expire.dat
heap-add.dat
heap-del.dat
heap-expire.dat

3.通过执行gnuplot生成报告

gnuplot /home/abel/Downloads/timeout-master/bench/bench.plt

plt文件

重点就在于plt文件了

set terminal postscript color  

set key top left
set xlabel "Number of timeouts"
set ylabel "Time\n(microseconds)"
#set logscale x

set title "Time spent installing timeouts" font ",20" 
plot 'heap-add.dat' using 1:($2*1000000) title "min-heap" with lines ls 1 lw 3 lc "red", \
     'wheel-add.dat' using 1:($2*1000000) title "hierarchical wheel" with lines ls 1 lw 3 lc "forest-green"

set title "Time spent deleting timeouts" font ",20"
plot 'heap-del.dat' using 1:($2*1000000) title "min-heap" with lines ls 1 lw 3 lc "red", \
     'wheel-del.dat' using 1:($2*1000000) title "hierarchical wheel" with lines ls 1 lw 3 lc "forest-green"

set title "Time spent expiring timeouts\n(by iteratively updating clock ~1000 times)" font ",20"
plot 'heap-expire.dat' using 1:($2*1000000) title "min-heap" with lines ls 1 lw 3 lc "red", \
     'wheel-expire.dat' using 1:($2*1000000) title "hierarchical wheel" with lines ls 1 lw 3 lc "forest-green"

这个文件说明了自己的plot读取的参数。title,字体,数据来源,等等参数。

效果图

这里写图片描述

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值