1. 程式人生 > >GNUPlot繪制曲線

GNUPlot繪制曲線

分享 title tput trac 例如 cond .net using csdn

發現gnuplot在mac上編譯安裝相當方便,在線下為了測試java老堆和lucene索引大小,須要繪制兩條線,可是直接點連的線很難看,所以後面使用貝塞爾曲線。

腳本例如以下:


#! /usr/local/bin/gnuplot -p


set terminal canvas;
set output "canvas.html"
set title "Illustration";
set xlabel "Time(Unit:second)";
set ylabel "Old Generation Heap Size/Index Size(Unit:GB)";

plot "OldGenerationHeap" using 1:2 smooth bezier, "IndexSize" using 1:2 smooth bezier;


秀秀最後成果:

技術分享

非常不錯哦!

GNUPlot繪制曲線