作业帮 > 综合 > 作业

matlab里sse,rsquare,dfe,adjrsquare,rmse 分别是什么?

来源:学生作业帮 编辑:作业帮 分类:综合作业 时间:2024/05/19 22:47:00
matlab里sse,rsquare,dfe,adjrsquare,rmse 分别是什么?
麻烦给我说中文名称就可以了
SSE ——剩余平方和
R-square——相关系数
RMSE——剩余标准差
Adjusted R-square——调整的相关系数
DFE——自由度
再问: 非常感谢,我还想问下这5个参数的大小表示什么呢?谢谢
再答: 给你一个例子。

数据:
x=2006:1:2013;
y=[520,415,450,460,520,590,673,740];
结果:
y =
General model:
y(x) = a*x^3+b*x^2+c*x+d
where x is normalized by mean 2010 and std 2.449
Coefficients (with 95% confidence bounds):
a = -33.77 (-63.45, -4.095)
b = 67.43 (44.65, 90.21)
c = 148.6 (99.2, 198)
d = 487 (460.5, 513.5)
gof =
sse: 1256.85281385282
rsquare: 0.986161971089195
dfe: 4
adjrsquare: 0.975783449406091
rmse: 17.7260600095792
再问: 好。这个例子我也有。谢谢了