I am currently implementing a default model of BIRDMAn, and I would like to know if I can add covariables in the analysis. How can I implement this function? Here is the code I tried.
nb = NegativeBinomial(
table=table_filt,
formula="group+age",
metadata=metadata,
)
I am currently implementing a default model of BIRDMAn, and I would like to know if I can add covariables in the analysis. How can I implement this function? Here is the code I tried.
nb = NegativeBinomial( table=table_filt, formula="group+age", metadata=metadata, )