Learn R Programming

sasLM (version 0.10.5)

TTEST: Independent two groups t-test comparable to PROC TTEST

Description

This is comparable to SAS PROC TTEST.

Usage

TTEST(x, y, conf.level=0.95)

Value

The output format is comparable to SAS PROC TTEST.

Arguments

x

a vector of data from the first (test, active, experimental) group

y

a vector of data from the second (reference, control, placebo) group

conf.level

confidence level

Author

Kyun-Seop Bae k@acr.kr

Details

Caution on choosing the row to use in the output.

See Also

mtest, tmtest, ztest

Examples

Run this code
  TTEST(mtcars[mtcars$am==1, "mpg"], mtcars[mtcars$am==0, "mpg"])

Run the code above in your browser using DataLab