| vartest | R Documentation |
intRvalsPerforms an F test to compare the variances of objects of class intRvals
vartest(
x,
y,
ratio = 1,
alternative = c("two.sided", "less", "greater"),
conf.level = 0.95
)
x |
an object of class |
y |
an (optional) object of class |
ratio |
the hypothesized ratio of the population variances of |
alternative |
a character string specifying the alternative hypothesis, must be one of " |
conf.level |
confidence level for the returned confidence interval |
The null hypothesis is that the ratio of the variances of the
data to which the models x and y were fitted, is equal to ratio.
A list with class "htest" containing the same components as in var.test
data(goosedrop)
dr=estinterval(goosedrop$interval)
# split the interval data into two periods
data.beforeMay=goosedrop[goosedrop$date<as.POSIXct('2013-05-01'),]
data.afterMay=goosedrop[goosedrop$date>as.POSIXct('2013-05-01'),]
dr.beforeMay=estinterval(data.beforeMay$interval)
dr.afterMay=estinterval(data.afterMay$interval)
# perform an F test
vartest(dr.beforeMay,dr.afterMay)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.