plotSimCI: Plot confidence intervals

Description Usage Arguments Author(s) Examples

View source: R/plotCI.R

Description

A function for convenient plotting of confidence intervals.

Usage

1

Arguments

ci

a (named) matrix containing the lower confidence bounds in the first column, the point estimates in the second and the upper confidence bounds in the third column.

Author(s)

Code adapted from plotCII from Frank Schaarschmidt

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
est <- c("H1"=0.860382, "H2"=0.9161474, "H3"=0.9732953)
# Sample standard deviations:
ssd <- c("H1"=0.8759528, "H2"=1.291310, "H3"=0.8570892)

pval <- c(0.01260, 0.05154, 0.02124)/2

ci <- simConfint(BonferroniHolm(3), pvalues=pval, 
  	confint="t", df=9, estimates=est, alpha=0.025, alternative="greater")

plotSimCI(ci)

gMCP documentation built on March 26, 2020, 6:26 p.m.