Hello, everybody!

I'm back to ask the obvious on behalf of the silent majority :)

Today a student asked me "what standard error was used in this t.test
output".  I looked into it and was a little surprised that a t.test
output object does not have a "slot" for the standard error.  Of
course, we can reconstruct the se=mu-hat/t, but I was surprised.

Do you think it would be nicer if t.test did include the denominator
in the output? If we had that output, we could more easily compare the
different methods of calculating the standard error that are discussed
in ?t.test.

ex:

> x <- rnorm(100, m=10)
> myt <- t.test(x, m=8)
> attributes(myt)
$names
[1] "statistic"   "parameter"   "p.value"     "conf.int"    "estimate"
[6] "null.value"  "alternative" "method"      "data.name"

$class
[1] "htest"

> myse <- myt$estimate/myt$statistic
> myse
mean of x
0.4928852
> myt$statistic
       t
20.33975
> myt$estimate/myse
mean of x
 20.33975


Happy summer!  Today was our last day of class in Kansas.

-- 
Paul E. Johnson
Professor, Political Science
1541 Lilac Lane, Room 504
University of Kansas

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to