gnuplot:从原始数据创建箱线图
gnuplot 可以从原始数据文件创建箱线图吗?我知道如何根据已经计算的中位数、四分位数等绘制箱线图 像这样< /a> - 但是如何从原始数据文件中获取?
原始数据文件的每一行都有一个测试结果。
can gnuplot create a boxplot from a raw data file? I know how I can plot a boxplot from the already calculated median, quartiles and so on like this - but how from a raw data file?
In each line of the raw data file there is one test result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我自己刚刚遇到了这个,在gnuplot 4.5(当前cvs开发版本)中它有这个功能。
目前,这意味着您必须自己从源代码编译 gnuplot,http://gnuplot.sourceforge。 net/development/index.html#DownloadCVS。
完成后,这是一个演示文件: http://gnuplot.sourceforge.net/ demo_4.5/boxplot.html
Just came across this myself, in the gnuplot 4.5 (cvs development version currently) it has this feature.
Currently that means you have to compile gnuplot yourself from the sources, http://gnuplot.sourceforge.net/development/index.html#DownloadCVS.
Once you get that done, here's a demo file: http://gnuplot.sourceforge.net/demo_4.5/boxplot.html
我认为你最终必须使用外部程序来计算箱线图所需的数据。我使用过 awk,但任何程序都可以在该地方使用。请注意,我计算了每行原始数据的开盘/收盘/最小值/最大值,而不是平均值和分位数。
在
junk.dat
文件中包含以下数据:这是您将得到的图:
I think you have to end up use external program to calculate the necessary data for box plot. I've used awk, but any program can be used in the place. Note that I've calculated opening/closing/minimum/maximum values in each line of raw data, instead of mean and quantiles.
With the following data in
junk.dat
file:Here's the plot you will get:
如果我正确理解你的问题,并且你正在寻找一种计算平均值的方法,你可以这样做:
上面的脚本计算数据行的平均值、总和、最小值和最大值。 using 指令中的
0
只是将数据行的索引作为 x 坐标值。使用以下
Data.csv
:您将得到以下图:
我希望这就是您正在寻找的。
If I understand your question correctly and you are looking for a way to calculate the mean value you could do something like this:
The script above calculates the mean, the sum, the minimum and the maximum value of a data line. The
0
in the using directive simply takes the index of the data line as the x-coordinate value.With the following
Data.csv
:You will get the following plot:
I hope this is what you were looking for.