summary.cytoglm {CytoGLMM} | R Documentation |
Extact and calculate p-values of bootstrap GLM fit
## S3 method for class 'cytoglm' summary(object, method = "BH", ...)
object |
A |
method |
Multiple comparison adjustment method |
... |
Other parameters |
tibble
data frame
set.seed(23) df <- generate_data() protein_names <- names(df)[3:12] df <- dplyr::mutate_at(df, protein_names, function(x) asinh(x/5)) glm_fit <- CytoGLMM::cytoglm(df, protein_names = protein_names, condition = "condition", group = "donor", num_boot = 10) # in practice >=1000 summary(glm_fit)