Displaying 1 result from an estimated 1 matches for "cimult".
Did you mean:
simult
2011 Oct 23
0
code review: is it too much to ask?
...- "N"
datac$se <- datac$sd / sqrt(datac$N) # Calculate standard error of the mean
# Confidence interval multiplier for standard error
# Calculate t-statistic for confidence interval:
# e.g., if conf.interval is .95, use .975 (above/below), and use df=N-1
ciMult <- qt(conf.interval/2 + .5, datac$N-1)
datac$ci <- datac$se * ciMult
return(datac)
}
# =========================================================================================
# Prepare the Throughput data
# ======================================================================...