gpt4 book ai didi

python - 从多项式回归(图)获取函数 ("f(x)")

转载 作者:太空宇宙 更新时间:2023-11-03 20:42:28 25 4
gpt4 key购买 nike

我对一些数据进行了多项式回归。绘制了图表。但是如何获得绘制图形的函数“f(x)”呢?我喜欢集成该功能!

 z = np.polyfit(x, y1, 6)  
p = np.poly1d(z)

xp = np.linspace(0, 1, 100)
line = plt.plot(x, y1, '.', xp, p(xp), '-', label=' G_MEAN_1 ')
plt.ylim(0, 1)
plt.legend()
plt.show()

那么我怎样才能从这里获取该功能 - 进行集成?

最佳答案

作为

    p = np.poly1d(z) 

返回一个函数,可以使用“p”进行积分。因此,要获得 0.3 到 0.6 的积分形式,您可以通过:

integrate.quad(p, 0.3, 0.6)

关于python - 从多项式回归(图)获取函数 ("f(x)"),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56782110/

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