summary-bg: Summary 'bg' objects

Description Usage Arguments Author(s) See Also Examples

Description

Summarize bg objects and easily access results of bg function.

Usage

1
2
## S4 method for signature 'bg'
summary(object, print = TRUE)

Arguments

object

is a bg object.

print

is a logical value determining if pretty summary of the object should be printed.

Author(s)

Stefan Roediger, Michal Burdukiewicz

See Also

bg

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
res <- AmpSim(cyc = 1:40, Cq = 25)
background <- bg.max(res[, 1], res[, 2])
#just print summary
summary(background)

#assign summary to variable without printing
vals <- summary(background, print = FALSE)
print(vals)

#easily access different values
vals["FDM"]

chipPCR documentation built on March 5, 2021, 9:06 a.m.