Description
We are considering to revise the respy interface and this issue serves to collect thought and use cases. At the moment, we initialize a simulate() and a crit_func() and do a host of setup operations. In particular, we create the time-consuming StateSpace class instance.
For simulation:
simulate = rp.get_simulate_func(params, options)
df = simulate(params)
For estimation:
crit_func = rp.get_crit_func(params, options, df)
crit_func(params)
Description
We are considering to revise the
respyinterface and this issue serves to collect thought and use cases. At the moment, we initialize asimulate()and acrit_func()and do a host of setup operations. In particular, we create the time-consumingStateSpaceclass instance.For simulation:
For estimation: