ich muss aktuell ein Projekt für die Uni mit Stata machen (verwende ich zum ersten Mal) im Bereich des Forecastings.
Zur Bearbeitung haben wir beispielhafte Do-Files unseres Professors zur Verfügung.
Ich habe mir mittlerweile große Teile des Skriptes zusammengebastelt. Bei Aufgabe 5 hänge ich allerdings.
Folgendes Problem:
Ich habe folgende Zeile aus dem Skript von meinem Professor übernommen:
- Code: Alles auswählen
* Forecasting ARIMA(0,1,1) Model: 1. out-of-sample period
predict usdbpsfarima11, y t0(tm(1986m1)) // level forecasts
label variable usdbpsfarima11 "One-Step, ARIMA(0,1,1) 1.Period"
predict usdbpsfarima21, y dynamic(tm(2011m1)) t0(tm(1986m1))
label variable usdbpsfarima21 "Multi-Step, ARIMA(0,1,1) 1.Period"
* Forecasting ARIMA(0,1,1) Model: 2. out-of-sample period
predict usdbpsfarima12, y t0(tm(1986m1)) // level forecasts
label variable usdbpsfarima12 "One-Step, ARIMA(0,1,1) 2.Period"
predict usdbpsfarima22, y dynamic(tm(2011m1)) t0(tm(1986m1))
label variable usdbpsfarima22 "Multi-Step, ARIMA(0,1,1) 2.Period"
Ich kriege dabei die Fehlermeldungen 1. 'option y not allowed' und 'variable usdbpsfarima11 not found / variable usdbpsfarima12 not found'
Was kann ich machen / ändern um den Code zum laufen zu bringen?
Ich bin über jede Hilfe sehr dankbar und wünsche noch einen schönen Abend.
VG
Paul