Example: dental hygienist
Search results with tag "Timeseries"
The TIMESERIES Procedure - SAS
support.sas.comFor example, the ARIMA procedure can be used to model and forecast each customer’s withdrawal data by using an ARIMA(0,1,1)(0,1,1) s model (where the number of seasons is s=7 days in a week) using the following statements: proc arima data=timeseries; identify var=withdrawals(1,7) noprint; estimate q=(1)(7) outest=estimates noprint;