Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从 java 中的数据集计算拟合优度 (GOF) 的选项有哪些,我正在查看 apache math 3.0 库,但我无法理解使用它计算 GOF 的方法。对其他库或数学 3.0 有什么建议吗?
对于线性最小二乘,它通常是 r 系数。r = 1.0 表示完美拟合;r = -1.0 表示方程与数据正交,r = 0.0 表示不拟合(感谢 Peter Lawrey 的修正)。典型值介于两者之间。
对于高阶函数,您应该查看为每个系数计算的置信水平。
弄清楚它的最佳方法是视觉:查看数据和拟合。
如果“无法理解”是“我一开始就不知道它背后的数学”的代码,那么库的变化将无济于事。花时间阅读和理解数学将。