Click or drag to resize

RegressionComponent Class

Contains details of a regression component e.g. the baseload (b*days) or the heating (h*HDD) component in a regression like E = b*days + h*HDD.
Inheritance Hierarchy

Namespace: DegreeDays.Api.Regressions
Assembly: DegreeDays (in DegreeDays.dll) Version: 1.4
Syntax
public abstract class RegressionComponent

The RegressionComponent type exposes the following members.

Properties
 NameDescription
Public propertyCoefficient Gets the coefficient of this regression component e.g. the b, h, or c (depending on the component in question) in a regression with an equation like E = b*days + h*HDD + c*CDD
Public propertyCoefficientPValue Gets the the p-value of the Coefficient.
Public propertyCoefficientStandardError Gets the standard error of the Coefficient.
Top
Methods
 NameDescription
Public methodEquals Two RegressionComponent instances are equal if they have the same class and the same configuration.
(Overrides ObjectEquals(Object))
Public methodGetHashCode Overridden to ensure consistency with Equals.
(Overrides ObjectGetHashCode)
Top
Remarks

This abstract class is not designed to be extended by third-party code, which is why it does not have an accessible constructor.

Thread Safety
All concrete subclasses of this abstract class are immutable. You can safely reuse them and call them from multiple threads at once.
Version History
VersionDescription
1.4 This was added in version 1.4.
See Also