Mario Picciani

Results 13 issues of Mario Picciani

Add switch case to init_par and use Enum isntead of strings.

enhancement

Need to discuss how we handle this: https://github.com/theislab/batchglm/blob/604823001e81fdab232fe27dc59dab8d506ea020/batchglm/models/base_glm/model.py#L66-L82 There are basically three options in my opinion: 1. Remove `InputDataGLM` entirely: We only use it as a container now that does...

cleanup

This here: https://github.com/theislab/batchglm/blob/23484819f0cdb4778c88ad9e68aebbdba0b5c814/batchglm/models/base_glm/simulator.py#L43-L48 is a bug that results in 'DataFrame' object has no attribute 'isel'. How to reproduce: ``` from batchglm.api.models.numpy.glm_nb import Simulator sim = Simulator() sim.generate_sample_description(shuffle_assignments=True) ``` I think...

bug