Learn R Programming

flan (version 1.0)

werhoff: Rifampin-resistant mutant counts from Werngren and Hoffner (2003)

Description

Samples from Table 1 p. 1522 of Werngren and Hoffner (2003).

The mean final number of cells is also given for each sample.

The coefficient of variation of the final number of cells is the same for all samples.

Usage

data(werhoff)

Arguments

Format

A list of 2 elements :

  • cvfn : the coefficient of variation of final numbers of cells, for all samples.

  • samples : a list of 13 lists. Each list includes :

    • A sample of mutants counts named "W<index of the sample".

    • mfn : the mean final number of cells.

Examples

Run this code
# coefficient of variation of final numbers
Wcvfn <- werhoff$cvfn
# tenth sample
W10 <- werhoff$samples[[10]]

# estimates without cvfn
without <- mutestim(W10$mc,mfn=W10$mfn)
# estimates with cvfn
with <- mutestim(W10$mc,mfn=W10$mfn,cvfn=Wcvfn)
rbind(without,with)

Run the code above in your browser using DataLab