我有一个3列的数据文件,我想用splot来绘制它。但我想要的是,gnuplot绘制第一行(用某种颜色,比如红色),然后暂停0.3秒,然后继续绘制下一行(用其他颜色,而不是红色,比如绿色),暂停0.3秒然后继续下一行。。。。依此类推。
任何帮助都将不胜感激。
提前感谢
尊敬Pankaj
尝试不错,但。。。这将创建与数据文件中的行数一样多的文件。这在我看来很难看。
我们可以编写一个shell/perl脚本来创建gnuplot脚本,其中包含以下命令:
splot x1 y1 z1
pause 1
replot x2 y2 z2
pause 1
replot x3 y3 z3
pause 1
replot x4 y4 z4
其中xi,yi,zi=数据文件中第i个行号的坐标。pause 1将暂停一秒钟。
这只是一个想法,尽管我不确定如何直接绘制坐标,而不是向gnuplot提供数据文件。
如果你想制作动画,最好使用专门的工具(比如mplayer)。
使用gnuplot准备所有源图像(第一个绘制单行,第二个绘制两行,等等),然后使用mplayer或convert(从imagemagic)从源文件中生成avi或动画GIF。
您可以使用以下shell片段生成输入文件的部分副本,每个副本的行数都在增加。
file="your input file.dat"
lines=$(wc -l $file)
i=1
while [ $i -le $lines ] ; do
head -${i} ${file} > ${file%.dat}-${i}lines.dat
done
给定somefile.dat,这将生成文件"somefile-1lines.dat"、"somefile-2lines.dat"等。然后您可以使用:
for f in *lines.dat ; do
gnuplot ... $f
done
按顺序绘制它们。
如果我的假设是错误的,而你真正想要的只是这个暂停,那么你可以尝试设置一些东西,让gnuplot从stdin获取数据,然后使用这个scipt(名称为paused-input.sh)来管道输入文件,每行之后都有暂停:
#!/bin/bash
while read l ; do
echo "$l"
sleep 1
done
然后像这样调用它:
(pause-input.sh | gnuplot ...) < somefile.dat
使用当前版本的gnuplot(这个问题发布已经4年多了),一次画一行(中间稍作停顿)可能更容易。
您可以使用for
循环和every
关键字,如下所示:
# Find out the number of lines in the data somehow,
# for example like this:
num_lines="`cat my_datafile.d | wc -l`"
# Plot the first line in the data-file:
plot './my_datafile.d' every 1::0::0
# For the remaining lines:
do for [line_index = 1:num_lines-1] {
pause 0.3
# Replot (from the same datafile) each line
# in the data file from the first one up to
# the current line_index
replot '' every 1::0::line_index
}
every 1::0::line_index
部分指示gnuplot——在每个循环中——绘制数据中从第一行(0
)到循环变量line_index
的当前值的每一行(1
)。我们使用的是gnuplot的帮助文本中提到的<point_incr>
、<start_point>
和<end_point>
:
gnuplot> help every
The `every` keyword allows a periodic sampling of a data set to be plotted.
[...]
Syntax:
plot 'file' every {<point_incr>}
{:{<block_incr>}
{:{<start_point>}
{:{<start_block>}
{:{<end_point>}
{:<end_block>}}}}}
[...]
版本信息:
$ gnuplot --version
gnuplot 4.6 patchlevel 0
制作一个绘图文件,例如"myplotfile.plt"。并在其中放入通常在gnuplot中键入的所有命令来绘制图形。
然后添加行
!sleep $Number_of_Seconds_to_Pause
到您想要暂停的绘图文件,并使用从终端运行
gnuplot myplotfile.plt
(绘图文件的扩展名无关紧要,如果你在windows或mac上,你可能想使用.txt)
绘图文件示例:
set title 'x squared'
plot x**2 title ''
!sleep 5
set title 'x cubed'
plot x**3 title ''
!sleep 5