close Warning: Can't synchronize with repository "(default)" (/var/svn/mms does not appear to be a Subversion repository.). Look in the Trac log for more information.

Opened 15 years ago

Closed 15 years ago

#30 closed enhancement (fixed)

GetARMA estimated

Reported by: atorre Owned by: Pedro Gea
Priority: critical Milestone: Estimation 0.5
Component: Parameters Keywords: Estimation, AR, MA
Cc:

Description

Hola MMS,
Para los output de modelos arima, se necesitan los métodos que devuelvan
los polinomios estimados: MA y AR. Además, sería recomendable hacer otros
como GetARI, GetPiW o GetPsiW.

Change History (2)

comment:1 Changed 15 years ago by atorre

Status: newaccepted

comment:2 Changed 15 years ago by atorre

Resolution: fixed
Status: acceptedclosed

Esto está ya implentado, lo que ocurre es que aún no hemos dado las
directrices de uso de las estimaciones.
Te comento como se obtendría la información que buscas:
En primer lugar obtengo los parámetros resultantes de la estimación:

Set rPars = estimation::GetParameters(?);

Luego con esos resultados obtengo el objeto ARIMA resultante mediante un
método de evaluación, (ahora marcados con ".E") concretamente
"GetARIMA.E".
Luego accedo a la información que necesite de él:

@MMS.ARIMAModel arima =
estimation::GetModel(?)::GetSubmodel("Veh.Tur.Mat")::GetARIMA.E(rPars);
Polyn arima::GetAR(?);     // Polinomio AR
Polyn arima::GetARI(?);    // Polinomio AR·I
Polyn arima::GetMA(?);     // Polinomio MA
Ratio arima::GetARIMA(?);  // Ratio A·RI / MA
Ratio arima::GetMAARI(?);  // Ratio MA / AR·I
Note: See TracTickets for help on using tickets.