Learn R Programming

MKpower (version 0.9)

hist: Histograms

Description

Produce histograms for simulations of power and type-I-error of tests.

Usage

# S3 method for sim.power.ttest
hist(x, color.hline = "orange", ...)

# S3 method for sim.power.wtest hist(x, color.hline = "orange", ...)

Value

Object of class gg and ggplot.

Arguments

x

object of class sim.power.ttest.

color.hline

color of horizontal line indicating uniform distribution of p values.

...

further arguments that may be passed through).

Author

Matthias Kohl Matthias.Kohl@stamats.de

Details

The plot generates a ggplot2 object that is shown.

Missing values are handled by the ggplot2 functions.

See Also

Examples

Run this code
res1 <- sim.power.t.test(nx = 5, rx = rnorm, rx.H0 = rnorm, 
                        ny = 10, ry = function(x) rnorm(x, mean = 3, sd = 3), 
                        ry.H0 = function(x) rnorm(x, sd = 3))
hist(res1)
res2 <- sim.power.wilcox.test(nx = 6, rx = rnorm, rx.H0 = rnorm,
                      ny = 6, ry = function(x) rnorm(x, mean = 2), 
                      ry.H0 = rnorm)
hist(res2)

Run the code above in your browser using DataLab