Class ForecastSettings
Represents the settings used for configuring a forecast model, including data type, confidence interval, forecast length, seasonality, and result data.
Inheritance
Inherited Members
Namespace: BoldReports.RDL.Data
Assembly: BoldReports.Web.dll
Syntax
public class ForecastSettings
Constructors
ForecastSettings()
Declaration
public ForecastSettings()
Properties
ConfidenceInterval
Gets or sets the confidence interval percentage for the forecast.
Declaration
public int ConfidenceInterval { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An System.Int32 representing the confidence interval as a percentage. |
DataType
Gets or sets the data type used in the forecast model.
Declaration
public string DataType { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the type of data being forecasted. |
Length
Gets or sets the length of the forecast period.
Declaration
public int Length { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An System.Int32 representing the number of time units for the forecast period. |
ResultData
Gets or sets the result data from the forecast analysis.
Declaration
public object ResultData { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An System.Object containing the result data from the forecast. |
Seasonality
Gets or sets the seasonality component of the forecast model.
Declaration
public int Seasonality { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An System.Int32 representing the number of time units per cycle of seasonality. |