Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Forecast ML feature in OAC

Summary:
Regarding Forecast section, an option to select the Model as 'Seasonal ARIMA'/'ARIMA'.
Content (required):
Hi Team, In the Forecast section, there is an option to select the Model as 'Seasonal ARIMA'/'ARIMA'. Any idea what are the hyper parameters that are passed from the OAC platform end to forecast the future data?
Also, is it possible to pass hyper-parameters during run time by the user running the report?
Version (include the version you are using, if applicable):
6.1
Code Snippet (add any code snippets that support your topic, if applicable):
Answers
-
Hi,
You can add forecasts using right click and add statistics, and for that forecast you can only change periods or the algorithm.
But, you can add forecast using a calculation column adding the forecast function where you can specify more parameters.
Example:
FORECAST(
revenue,
(time_year, time_quarter),
'forecast',
'modelType=arima;numPeriods=6;predictionInterval=70;'
)
Please check documentation to find all details about each parameter.
Regards,
Elói
0