print.cytoglmm: Extact and print GLMM fit

View source: R/print.cytoglmm.R

print.cytoglmmR Documentation

Extact and print GLMM fit

Description

Extact and print GLMM fit

Usage

## S3 method for class 'cytoglmm'
print(x, ...)

Arguments

x

A cytoglmm class

...

Other parameters

Value

NULL.

Examples

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)

ChristofSeiler/CytoGLMM documentation built on April 21, 2023, 3:38 a.m.