作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含未定义条目数的数据文件,如下所示:
A B C D E..
1 0 2 5 4
7 4 3 4 1
8 7 4 0
7 1 1
plot for [i=1:10] 'data.log' using i notitle
set for [j = 1:1000:2] style line i lc rgb "white"
set for [j = 2:1000:2] style line i lc rgb "red"
最佳答案
您可以像这样确定数据文件的列数和行数:
rows = `awk 'END {print NR}' data.log`
columns = `awk '{if(NR == 1) print NF}' data.log`
print "The maximum number of rows is ", rows, " and the maximum number of columns is ", columns
plot for [i=1:columns] 'data.log' using i notitle
awk
的情况下获得相同的结果用这种方法
rows = `cat data.log | wc -l`
columns = `head data.log -n1 | wc -w`
关于Gnuplot columnstacked 直方图 - 行数/行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9308602/
我有一个包含未定义条目数的数据文件,如下所示: A B C D E.. 1 0 2 5 4 7 4 3 4 1 8 7 4 0 7 1 1 第一行代表工作时间,而不是暂停等交替方式。为了可
我是一名优秀的程序员,十分优秀!