gpt4 book ai didi

bash - 使用 gnuplot 从 CSV 生成图表

转载 作者:行者123 更新时间:2023-11-29 09:13:03 26 4
gpt4 key购买 nike

我收到一个错误:

跳过没有有效点的数据文件

当尝试使用 gnuplot 从 csv 文件生成图形时,非常感谢任何帮助!

样本.csv

timestamp,unit,maximum,average
Thu Jan 29 10:57:00 GMT 2015,Percent,22.96,7.723999999999999
Thu Jan 29 10:52:00 GMT 2015,Percent,62.79,26.227999999999998
Thu Jan 29 10:47:00 GMT 2015,Percent,46.54,15.075999999999999

run_gnuplot.sh

#!/bin/bash
gnuplot << eor
set terminal png
set output 'output.png'
set style data linespoints
set datafile separator ","
set xlabel "timestamp"
set ylabel "percent"
plot "sample.csv" using 1:3 title "Maximum" using 1:4 title "Average"
eor

错误:

bash-4.1$ ./run_gnuplot.sh 
Could not find/open font when opening font "arial", using internal non-scalable font

gnuplot> plot "sample.csv" using 1:3 title "Maximum" using 1:4 title "Average"
^
line 0: warning: Skipping data file with no valid points

gnuplot> plot "sample.csv" using 1:3 title "Maximum" using 1:4 title "Average"
^
line 0: x range is invalid

最佳答案

您必须告诉 gnuplot,第一列将被视为时间数据

set xdata time

您还必须给出解析第一列的时间格式。不幸的是,gnuplot 不支持在星期几中阅读。

要么更改写入文件的数据格式,要么使用 cut 等外部工具过滤星期几:

set xdata time
set timefmt '%b %d %H:%M:%S GMT %Y'
set datafile separator ','

plot '< tail -n +2 sample.csv | cut -f 1 --complement -d" "' using 1:3, '' using 1:4

跳过第一行的 tail 部分在 5.0 版本中不是必需的。

关于bash - 使用 gnuplot 从 CSV 生成图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28281139/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com