print.cytoglm: Extact and print bootstrap GLM fit

View source: R/print.cytoglm.R

print.cytoglmR Documentation

Extact and print bootstrap GLM fit

Description

Extact and print bootstrap GLM fit

Usage

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

Arguments

x

A cytoglm 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))
glm_fit <- CytoGLMM::cytoglm(df,
                             protein_names = protein_names,
                             condition = "condition",
                             group = "donor",
                             num_boot = 10) # in practice >=1000
print(glm_fit)

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