Rmisc (version 1.5)

group.STDERR: Group Standard Error Interval

Description

Calculates the standard error interval of grouped data.

Usage

group.STDERR(x, data)

Arguments

x

an `aggregate` compatible formula

data

a data frame (or list) from which the variables in formula should be taken.

Value

A data frame consisting of one column for each grouping factor plus three columns for the upper bound, mean and lower bound of the standard error interval for each level of the grouping factor.

Examples

Run this code
# NOT RUN {
require(latticeExtra)
with(group.STDERR(weight~feed,chickwts),
 segplot(feed~weight.lower+weight.upper,center=weight.mean)
)

require(Hmisc)
with(group.STDERR(Temp~Month,airquality),
 xYplot(Cbind(Temp.mean,Temp.lower,Temp.upper)~numericScale(Month),type="b",ylim=c(60,90))
)
# }

Run the code above in your browser using DataCamp Workspace