t-tests output
In chapter 3, you computed a t-test of length
by adult
. Now, you will save the output from this t-test as abttest
and extract and display various elements stored in the output object.
The abaloneKeep
dataset has been loaded for you.
Este ejercicio forma parte del curso
R For SAS Users
Instrucciones del ejercicio
- Perform a t-test of length by adult using
t.test()
and save the output asabttest
. - Display
statistic
,parameter
andconf.int
elements fromabttest
t-test output.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Perform pooled t-test of length by adult, save as abttest
abttest <- t.test(___ ~ ___, data = ___,
___)
# Display statistic, parameter and conf.int from abttest
___
___
___