Transform misc. statistics to SE

transformstats(data)

Arguments

data

data frame with mean, statistic, n, and statistic name: example data <- data.frame(Y=rep(1,5), stat=rep(1,5), n=rep(4,5), statname=c('SD', 'MSE', 'LSD', 'HSD', 'MSD'))

Value

dataframe with statistics transformed to SE

Details

Automates transformations of SD, MSE, LSD, 95%CI, HSD, and MSD to conservative estimates of SE.

Examples

# NOT RUN {
statdf <- data.frame(Y=rep(1,5),
                               stat=rep(1,5),
                               n=rep(4,5),
                               statname=c('SD', 'MSE', 'LSD', 'HSD', 'MSD'))
transformstats(statdf)
# }