ltrend.test | R Documentation |
Test for a linear trend in variances.
ltrend.test(
y,
group,
score = NULL,
location = c("median", "mean", "trim.mean"),
tail = c("right", "left", "both"),
trim.alpha = 0.25,
bootstrap = FALSE,
num.bootstrap = 1000,
correction.method = c("none", "correction.factor", "zero.removal", "zero.correction"),
correlation.method = c("pearson", "kendall", "spearman")
)
y |
a numeric vector of data values. |
group |
factor of the data. |
score |
weights to be used in testing an increasing/decreasing trend in
group variances, |
location |
the default option is |
tail |
the default option is |
trim.alpha |
the fraction (0 to 0.5) of observations to be trimmed from
each end of |
bootstrap |
a logical value identifying whether to implement bootstrap.
The default is |
num.bootstrap |
number of bootstrap samples to be drawn when the |
correction.method |
procedures to make the test more robust;
the default option is |
correlation.method |
measures of correlation; the default option is
|
The test statistic is based on
the classical Levene's procedure (using the group means),
the modified Brown–Forsythe Levene-type procedure (using the group medians),
or the modified Levene-type procedure (using the group trimmed means).
More robust versions of the test using the correction factor or structural zero
removal method are also available. Two options for calculating critical values,
namely, approximated and bootstrapped, are available.
By default, NA
s are omitted from the data.
A list of class "htest"
containing the following components:
statistic |
the value of the test statistic expressed in terms of correlation (Pearson, Kendall, or Spearman). |
p.value |
the |
method |
type of test performed. |
data.name |
a character string giving the name of the data. |
t.statistic |
the value of the test statistic from Student's t-test. |
non.bootstrap.p.value |
the |
log.p.value |
the log of the |
log.q.value |
the log of the (one minus the |
Kimihiro Noguchi, W. Wallace Hui, Yulia R. Gel, Joseph L. Gastwirth, Weiwen Miao
neuhauser.hothorn.test
, levene.test
,
lnested.test
, mma.test
, robust.mmm.test
data(pot)
ltrend.test(pot[, "obs"], pot[, "type"], location = "median", tail = "left",
correction.method = "zero.correction")
## Bootstrap version of the test. The calculation may take up a few minutes
## depending on the number of bootstrap samples.
ltrend.test(pot[, "obs"], pot[, "type"], location = "median", tail = "left",
correction.method = "zero.correction",
bootstrap = TRUE, num.bootstrap = 500)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.