nparcomp (version 3.0)

plot.mctp: Visualizing the result of mctp

Description

This function takes an object of class "mctp" and creates a plot of the confidence intervals for the estimated effects.

Usage

# S3 method for mctp
plot(x,...)

Arguments

x

An object of class "mctp", i.e. the result when applying mctp to a dataset. Otherwise an error will occur.

...

Arguments to be passed to methods.

Value

plot.mctp returns a graph that contains a confidence interval for the estimated effect of each contrast. It just visualizes the result of the mctp-statement.

Details

It is not possible to change any parameter set in the mctp-statement.

Since plot.mctp is a S3 method it suffices to use plot(x) as long as x is of class "mctp". It will be interpreted as plot.mctp(x).

References

F. Konietschke, L.A. Hothorn, E. Brunner: Rank-Based Multiple Test Procedures and Simultaneous Confidence Intervals. Electronic Journal of Statistics, Vol.0 (2011) 1-8.

See Also

For further information on the usage of mctp, see mctp.

Examples

Run this code
# NOT RUN {
data(liver)
a<-mctp(weight ~dosage, data=liver, asy.method = "fisher",
        type = "Dunnett", alternative = "two.sided", plot.simci = FALSE, 
        info = FALSE)
plot(a)
# }

Run the code above in your browser using DataCamp Workspace