View source: R/censMulticomp.test.R
censMulticomp.test | R Documentation |
Performs a multiple nonparametric comparison test among groups of left-censored data.
censMulticomp.test(x, groups, method = "holm", alpha = 0.05)
x |
the observations the data are forced to class "lcens." Missing values (NAs) are allowed and removed before the test is performed. |
groups |
any group vector for the observations. Missing values (NAs) are allowed and removed before the test is performed. |
method |
the method for adjustment of p-value. See
|
alpha |
the significance level of the test. |
An object of class "censMCT."
need some kind of general description.
Helsel, D.R. 2012, Statistics for censored environmental data using Minitab and R: New York, Wiley, 324 p.
censKSample.test
set.seed(69) Xu <- rlnorm(22, 0, 1) Yu <- rlnorm(22, .4, 1) Zu <- rlnorm(22, 1, 1) Gu <- factor(rep(c("X", "Y", "Z"), each=22)) # Censor the data at 1 censKSample.test(as.lcens(c(Xu, Yu, Zu), 1), Gu) censMulticomp.test(as.lcens(c(Xu, Yu, Zu), 1), Gu)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.