FORECAST
Finds the best fit line for the given data by using the linear regression method to forecast values for the time period specified.
Syntax: FORECAST (
metric_or_variable
,
'type_of_forecast'
,
start_index
,
end_index
)
metric_or_variable
is the name of the metric or variable'type_of_forecast'
is the forecast method you want to apply. Currently, only'linear'
regression is supportedstart_index
is the starting index which can be described either in fixed or relative terms to the time periodend_index
is the ending index which can be described either in fixed or relative terms to the time period
Example: FORECAST (
Expansion ARR
,
'linear'
,
0
,
6
)
Last updated
Was this helpful?