发现gnuplot在mac上编译安装相当方便,在线下为了测试java老堆和lucene索引大小,需要绘制两条线,但是直接点连的线非常难看,所以后面使用贝塞尔曲线。
脚本如下:
#! /usr/local/bin/gnuplot -p
plot "OldGenerationHeap" using 1:2 smooth bezier, "IndexSize" using 1:2 smooth bezier;
秀秀最后成果:
很不错哦!
原文地址:http://blog.csdn.net/jollyjumper/article/details/40917889