博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第 34 章 Gnuplot
阅读量:6841 次
发布时间:2019-06-26

本文共 1025 字,大约阅读时间需要 3 分钟。

目录

34.1. 安装 Gnuplot
34.1.1. CentOS 环境
34.1.2. Ubuntu 环境
34.1.3. 测试 Gnuplot 是否可用
34.2. terminal
34.3. output
34.4. title/xlabel/ylabel
34.5. xrange/yrange
34.5.1. 时间轴范围
34.5.2. 日期轴范围
34.6. xdata
34.6.1. Date/Time
34.7. plot
34.7.1. using
34.8. PHPlot
34.9. FAQ
34.9.1. Could not find/open font when opening font "arial", using internal non-scalable font
34.9.2. 变量传递

http://gnuplot.info/

34.1. 安装 Gnuplot

34.1.1. CentOS 环境

# yum install gnuplot

34.1.2. Ubuntu 环境

$ sudo apt-get install gnuplot

34.1.3. 测试 Gnuplot 是否可用

$ cat test.log8:00 506.8778:30 501.0689:00 493.2549:30 469.18410:00 460.16111:00 426.06512:00 429.73414:00 409.25515:00 423.51216:00 390.67617:00 390.67618:00 390.676$ cat test.gnuplotset terminal png truecolor size 800,250set output "test.png"set autoscaleset xdata timeset timefmt "%H:%M"set style data linesset xlabel "time per day"set ylabel "Mbps"set title "Apache Traffic"set gridplot "test.log" using 1:2 title "Hit"$ gnuplot test.gnuplot

原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

你可能感兴趣的文章