如何将用于生成直方图的频率计数从 gnuplot 导出到外部数据文件?

发布于 2024-12-01 12:22:42 字数 347 浏览 0 评论 0原文

要绘制直方图,我按照《Gnuplot in Action》一书进行操作,并使用它

binc(bin_width,x) = bin_width * ( int(x/bin_width) + 0.5 )

来绘制直方图,

plot 'datafile' u (binc(bin_width,$1)) : (1.0/size_sample ) smooth frequency

我了解平滑频率为每个箱创建一个频率计数,并且绘图使用它来制作直方图

但是,我如何创建变量例如,包含频率的数据,我想这样做以将每个容器的频率计数值导出到文件中。

To plot a histogram I follow the book Gnuplot in Action and I use

binc(bin_width,x) = bin_width * ( int(x/bin_width) + 0.5 )

and to plot I use

plot 'datafile' u (binc(bin_width,$1)) : (1.0/size_sample ) smooth frequency

I have understood that smooth frecuency create a frecuency count for each bin and this is used by plot to make the histogram

But, How can I create a variable that contain the frecuency, I want do this to export the values of each bin's frecuency counts to a file, for example.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Hello爱情风 2024-12-08 12:22:42

您可以通过设置 table 变量来重定向绘图并将其保存为文本格式。

binc(bin_width,x) = bin_width * ( int(x/bin_width) + 0.5 )
set table "hist.dat"
plot 'datafile' u (binc(bin_width,$1)) : (1.0/size_sample ) smooth frequency
unset table

您的直方图将以文件名“hist.dat”保存。

You can redirect the plot and save it in text format by setting table variable.

binc(bin_width,x) = bin_width * ( int(x/bin_width) + 0.5 )
set table "hist.dat"
plot 'datafile' u (binc(bin_width,$1)) : (1.0/size_sample ) smooth frequency
unset table

Your histogram will be saved in the file name "hist.dat".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文