| Plot.ConfInt {npclust} | R Documentation | 
Bar plots for two-sided confidence intervals
Description
Bar plots for two-sided confidence intervals
Usage
Plot.ConfInt(object, level, side="two.sided",
adjust=NULL)
Arguments
object | 
 a fitted model object from ncda().  | 
level | 
 the confidence level required.  | 
side | 
 a character string specifying the side of the confidence bound, must be one of "two.sided" (default), "left" or "right".  | 
adjust | 
 an optional character string specifying the multiple adjustment method, by default there is no adjustment, if specified, must be one of "Bonferroni" or "Working-Hotelling". You can specify just the initial letter.  | 
Value
Bar plots.
Examples
skin_analysis <- ncda(score~tx, skin, intervention, subject,
                      indicator=c("control","treatment"),
                      Contrast=matrix(c(1,-1), nrow = 1))
Plot.ConfInt(skin_analysis,0.95,"Two-Sided")
ARTIS_analysis <- ncda(emot_pqol~tx, ARTIS, intervention, homeid,
                       indicator = c("0","1"))
Plot.ConfInt(ARTIS_analysis,0.95,"Two-Sided")
Plot.ConfInt(ARTIS_analysis,0.95,"Two-Sided","Bonferroni")
Plot.ConfInt(ARTIS_analysis,0.95,"Two-Sided","Working-Hotelling")
[Package npclust version 0.1.0 Index]