gpt4 book ai didi

gnuplot - 使用 gnuplot 绘制直方图?

转载 作者:行者123 更新时间:2023-12-03 04:10:19 25 4
gpt4 key购买 nike

如果我的 .dat 文件已经具有正确分箱的数据,我知道如何在 gnuplot 中创建直方图(只需使用“带框”)。有没有办法获取数字列表并让 gnuplot 根据用户提供的范围和 bin 大小提供直方图?

最佳答案

是的,虽然非常隐蔽,但它快速而简单:

binwidth=5
bin(x,width)=width*floor(x/width)

plot 'datafile' using (bin($1,binwidth)):(1.0) smooth freq with boxes

查看 help smooth freq 以了解为什么上面的内容会生成直方图

要处理范围,只需设置 xrange 变量。

关于gnuplot - 使用 gnuplot 绘制直方图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2471884/

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