Opened 15 years ago
Last modified 15 years ago
#495 closed doubt
Problema con la transformacion Boxcox — at Initial Version
| Reported by: | lmperez | Owned by: | |
|---|---|---|---|
| Priority: | critical | Milestone: | Maintenance |
| Component: | Models | Keywords: | BoxCox |
| Cc: |
Description
Hola MMS, cuando defino un submodeo y escribo la orden
MMS::@Transformation _.transformation = MMS::@Transformation.BoxCox::Default(0,1)
entiendo que la serie output transformada debería ser zt=Log(st+1), sin embargo MMS hace zt=Log(st)
Por otra parte cuando quiero definir transformación identidad:
MMS::@Transformation _.transformation = MMS::@Transformation.BoxCox::Default(1,0)
entiendo que debería hacer zt=st, sin embargo MMS hace zt=st-1
Podéis compilar el projecto de matriculación de vehículos probando las dos transformaciones y ejecutar las ordenes:
Serie original = MMS::Container::GetModel("Mat.Veh__1.0")::GetSubmodel("Veh.Tur.Mat")::GetOutput(?)::GetVariable(?)::GetData(?);
Serie transformada = MMS::Container::GetModel("Mat.Veh__1.0")::GetSubmodel("Veh.Tur.Mat")::GetOutput(?)::GetData(?);
Serie TransLog = BoxCoxTransf(original,@BoxCoxStruct(0,1));
Serie TransId = BoxCoxTransf(original,@BoxCoxStruct(1,0));
Note: See
TracTickets for help on using
tickets.
![(please configure the [header_logo] section in trac.ini)](/mms/chrome/site/logomms.png)