WeightedFit {Microsoft.VisualBasic.Data.Bootstrapping} | .NET clr documentation |
加权拟合的结果
# namespace Microsoft.VisualBasic.Data.Bootstrapping
export class WeightedFit {
# SEC: Std Error of coefficients
CoefficientsStandardError: double;
# RYSQ: Multiple correlation coefficient (R2,相关系数)
CorrelationCoefficient: double;
# Ycalc: Calculated values of Y.(根据所拟合的公式所计算出来的预测值)
ErrorTest: IFitError[];
# FReg: Fisher F statistic for regression
FisherF: double;
# 一元多项式的数据模型
Polynomial: Formula;
# DY: Residual values of Y
Residuals: double;
# SDV: Standard deviation of errors
StandardDeviation: double;
# V: Least squares and var/covar matrix
VarianceMatrix: Double[,];
}
ErrorTest
: IFitErrorPolynomial
: FormulaVarianceMatrix
: Double