gpt4 book ai didi

plot - 如何在图形上绘制卡方 - gnuplot

转载 作者:行者123 更新时间:2023-12-05 04:05:52 27 4
gpt4 key购买 nike

我是 GNUplot 的新手,但我的实验室工作需要它。我有一系列数据需要拟合。这是一件简单的事情,我做了合适的并且它有效。我还设法在图表上打印了参数,但是如何绘制卡方值和自由度呢? labels on plot

最佳答案

我自己找到了解决方案。 GNUPlot 没有明确告诉它给卡方变量的名称,但它会为每个拟合打印自由度 (FIT_NDF) 和残差均方根 (FIT_STDFIT)。卡方平方根中的残差均方根,因此我使用了这个:

     set fit errorvariables
fit f(x) data using @c0c1 yerror via a,b
set label sprintf("a = %2.6f +/- %2.6f",a,a_err) @graph
set label sprintf("b = %2.6f +/- %2.6f",b,b_err) @graph2
set label sprintf("DOF = %.0f", FIT_NDF) @dof
chi2=(FIT_STDFIT*FIT_STDFIT)
set label sprintf("{/Symbol c}^2 = %.5f", chi2) @chi2
plot data using @c0c1 with yerrorbars title "C0-C1", f(x)

现在可以了

关于plot - 如何在图形上绘制卡方 - gnuplot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50648018/

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