Christopher Körber

Results 4 comments of Christopher Körber

In principle it might be possible to incorporate the delayed hospitalization effect in a similar spirit as SEIR: My idea works as follows ("SIHR" like---inspired by a youtube video about...

Indeed the null entry seems to be the reason for the float conversion. It might be possible to fix this by changing the many-to-many column datatype to `"Int64"`. See also...

@hyzyla, yes the `"Int64"` type supports integer and `np.nan` or `None` values (which I believe correspond to field null values) E.g., ``` > pd.Series([1, None]) 0 1.0 1 NaN dtype:...

Hello BB, To enable fast computations, `gvar` compiles C code into a Python module. For this reason it requires a compiler and `numpy` as perquisites. Likely, this was the cause...