Click or drag to resize

LinearFitBySvd Properties

The LinearFitBySvd type exposes the following members.

Properties
 NameDescription
Public propertyAdjustedRSquaredGives the adjusted coefficient of determination.
Public propertyConditionNumber Gets the condition number. The decadic logarithm of the condition number is roughly the loss of precision (in digits) during the calculation.
Public propertyCovariances Get the variance-covariance-matrix for the fit.
Public propertyEstimatedVarianceGet the estimated residual mean square, also called SigmaSquare..
Public propertyNumberOfData Returns the number of data value.
Public propertyNumberOfParameter Returns the number of parameter (=Order+1) of the fit.
Public propertyParameter Get the resulting parameters, so that the model y = SUM(parameter[i]*functionbase[i])
Public propertyPredictedValues Gets the predicted dependent values
Public propertyRegressionCorrectedSumOfSquares Gets the regression sum of squares, i.e. SUM(yi`-ymean), where yi` is the predicted ith y value and y mean is the mean value of all y values.
Public propertyResidualSumOfSquares Gets the sum of ChiSquare for the fit. This is SUM(yi-yi`)^2, where yi is the ith y value and yi` is the ith predicted y.
Public propertyResidualValues Gets the array of residual values defined as the difference y[i]-ypredicted[i].
Public propertyRSquared Gives the coefficient of determination, also called R^2, squared correlation coefficient. It is a measure, how much of the variability of the y data is accounted for by the regression model.
Public propertySigmaGet the standard error of regression, defined as Sqrt(SigmaSquare).
Public propertyTotalCorrectedSumOfSquares Gives the corrected sum of squares of y, i.e. SUM(yi-ymean), where yi is the ith y value and ymean is the mean of all y values.
Top
See Also