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.

Changes between Initial Version and Version 1 of Ticket #625


Ignore:
Timestamp:
May 16, 2011, 2:27:03 PM (14 years ago)
Author:
Pedro Gea
Comment:

Sí, aunque no sea algo muy habitual puede crearse una previsión sin utilizar una estimación.

Veamos:

Una previsión tiene dos atributos que recogen la información de la estimación: (1) el modelo (_.model) y (2) los parámetros estimados (_.parameters).

Lo más común es crear la previsión a partir de una estimación indicándola (en el nameblock de argumentos) mediante el argumento _.estimation (que no corresponde con ningún atributo). MMS internamente extrae y copia el modelo y los parámetros que ésta contiene:

MMS::@Forecast forecast = MMS::Container::ReplaceForecast([[
  Text _.name = "...";
  MMS::@Estimation _.estimation = MMS::Container::GetEstimation(...);
  MMS::@SettingsForecast _.settings = [[
    Text _.mode = "Point"
  ]];
  Set _.fIntervals = SetOfSet( 
    Set [["*", ..., ...]] 
  )
]]);

Sin embargo es posible utilizar un modelo o unos parámetros distintos añadiendo explícitamente otra opción con los argumentos _.model y _.parameters. Si se utilizan las dos variantes el argumento _.estimation ya no es necesario y en caso de indicarlo no se utilizará. Por ejemplo:

MMS::@Estimation estimation = MMS::Container::GetEstimation(...);
MMS::@Forecast forecast = MMS::Container::ReplaceForecast([[
  Text _.name = "...";
  MMS::@Model _.model = estimation::GetModel(?);
  Set _.parameters = estimation::GetParameters(?);
  MMS::@SettingsForecast _.settings = [[
    Text _.mode = "Point"
  ]];
  Set _.fIntervals = SetOfSet( 
    Set [["*", ..., ...]] 
  )
]]);

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #625

    • Property Status changed from new to closed
    • Property Type changed from defect to doubt
    • Property Resolution changed from to fixed
  • Ticket #625 – Description

    initial v1  
    1 Existe algún método (ó podría existir) que haga la previsión sin que parta de una estimación (el usuario incorporaría los parámetros)?
     1¿Existe algún método (o podría existir) que haga la previsión sin que parta de una estimación (el usuario incorporaría los parámetros)?
    22
    33