Hana Sevcikova

Results 11 comments of Hana Sevcikova

Thanks @cvanoli! Yes - that would work. We usually relax the filtering if the number of agents to be sampled from is less than 1/3 of the target number. If...

We came across this too. Our transition model handles it by running these lines after the `full_transition()` (for HTM): ``` orca.get_table("persons").index.name = persons.index.name orca.get_table("households").index.name = households.index.name ``` But this should...

Related to this, it would be useful to have a function `delete_column()`. Currently, it seems that the only way to delete columns is to re-register the whole table.

Thanks for looking into it @smmaurer and @janowicz! My use case is as follows: There is a registered column defined as a variable. But sometimes I want to provide external...

Thanks Scott @bridwell ! I'm not sure if this actually works for my case. I need to make it more specific: In our application, I need the households.city_id to be...

Wow - this looks like it could work. Obviously, it would be better if the `change_col_cache_scope` function would be an orca method of the column class, but this is a...

Thanks for the comment @lmwang9527 ! The caching has been a headache for us as well. We now set everything to "step" to avoid hidden issues, which of course slows...

Just to follow up on the issue Stefan found. The problem happens when some rows of the data (say households) have characteristics that are not captured by the control totals...

Thank you for the suggestion @Deleetdk . For now I added an argument na.action to bic.glm.formula which is set to na.omit by default. Will do the same for the data.frame...