本文整理汇总了Python中pyearth.Earth.linear_fit方法的典型用法代码示例。如果您正苦于以下问题:Python Earth.linear_fit方法的具体用法?Python Earth.linear_fit怎么用?Python Earth.linear_fit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyearth.Earth
的用法示例。
在下文中一共展示了Earth.linear_fit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_linear_fit
# 需要导入模块: from pyearth import Earth [as 别名]
# 或者: from pyearth.Earth import linear_fit [as 别名]
def test_linear_fit():
from statsmodels.regression.linear_model import GLS, OLS
earth = Earth(**default_params)
earth.fit(X, y)
earth.linear_fit(X, y)
soln = OLS(y, earth.transform(X)).fit().params
assert_almost_equal(numpy.mean((earth.coef_ - soln) ** 2), 0.0)
sample_weight = 1.0 / (numpy.random.normal(size=y.shape) ** 2)
earth.fit(X, y)
earth.linear_fit(X, y, sample_weight)
soln = GLS(y, earth.transform(
X), 1.0 / sample_weight).fit().params
assert_almost_equal(numpy.mean((earth.coef_ - soln) ** 2), 0.0)