print.cytoglmm {CytoGLMM} | R Documentation |
Extact and print GLMM fit
## S3 method for class 'cytoglmm' print(x, ...)
x |
A |
... |
Other parameters |
NULL.
set.seed(23) df <- generate_data() protein_names <- names(df)[3:12] df <- dplyr::mutate_at(df, protein_names, function(x) asinh(x/5)) glmm_fit <- CytoGLMM::cytoglmm(df, protein_names = protein_names, condition = "condition", group = "donor") print(glmm_fit)