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 14 years ago

Last modified 14 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));

Change History (0)

Note: See TracTickets for help on using tickets.