Mark Isken

Results 6 comments of Mark Isken

Hmm, just installed from github (Mesa-0.8.8.1) as suggested and now getting different error if I use `variable_parameters=None` or omit entirely. `TypeError: unhashable type: 'dict'` at line 168 of batchrunner.py If...

Yep, here it is: ``` batch_run = BatchRunner( CovidHospModel, variable_parameters=None, fixed_parameters=model_params, iterations=num_iterations, max_steps=num_steps, model_reporters={ "DC": get_datacollector }, display_progress=True) ``` `model_params` is a dict and `get_datacollector` returns a `model.DataCollector` object (so...

@tpike3 thanks. I wasn't exactly sure how to interpret the following sentence in the BatchRunner API docs: > Note that by default, the reporters only collect data at the end...

@jpettit2 @cls3415 I put together a [notebook](https://github.com/misken/c19/blob/master/mychime/modeling/chime_flow_resources_p1.ipynb) yesterday to try to clarify for myself (and hopefully others) exactly how the resource related computations are done. It has the math that...

I concur. The documentation is quite detailed and no need to try to put too much of it into the paper. Specific usage examples from different domains might help readers...

Just to follow up with a bit more on this issue. In addition to some additional specific usage examples in the paper, it would be a good future task to...