Click or drag to resize

DegreeDaysRegressionComponent Class

Contains details of a heating or cooling component in a regression, with the base temperature and degree days used, as well as the usual coefficient and stats.
Inheritance Hierarchy
SystemObject
  DegreeDays.Api.RegressionsRegressionComponent
    DegreeDays.Api.RegressionsDegreeDaysRegressionComponent

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

The DegreeDaysRegressionComponent type exposes the following members.

Properties
 NameDescription
Public propertyBaseTemperature Gets the non-null base Temperature of the degree days this regression component was calculated with.
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
(Inherited from RegressionComponent)
Public propertyCoefficientPValue Gets the the p-value of the Coefficient.
(Inherited from RegressionComponent)
Public propertyCoefficientStandardError Gets the standard error of the Coefficient.
(Inherited from RegressionComponent)
Public propertySampleDegreeDaysDataSet Gets the non-null DatedDataSet of the degree days this regression component was calculated with.
Public propertySampleDegreeDaysTotal Gets the non-null DataValue representing the total number of degree days across all the periods this regression component was calculated for.
Top
Methods
 NameDescription
Public methodEquals Two RegressionComponent instances are equal if they have the same class and the same configuration.
(Inherited from RegressionComponent)
Public methodGetHashCode Overridden to ensure consistency with Equals.
(Inherited from RegressionComponent)
Public methodToString Returns a non-null, non-empty string representation of this instance for logging and debugging purposes.
(Overrides ObjectToString)
Top
Thread Safety
Instances of this 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