f.t_test: Returns the results of a t-test along with a Cohen's D effect...

Description Usage Arguments Author(s) Examples

Description

Requires two dataframes with continuous variables, variance on variables, and matched in variable order. Requires use of describe from 'psych' package. Requires use of cohen.d from 'effsize' package

Usage

1
f.t_test(df1, df2)

Arguments

df1

is the majority group dataframe

df2

is the minority group dataframe

Author(s)

Adam Meade awmeade@ncsu.edu

Examples

1
2
3
4
5
6
7
8
## Not run: 
 require('psych')
 require('effsize')
 automatic  <- mtcars[which(mtcars$am == 0),]
 manual <- mtcars[which(mtcars$am == 1),]
 f.t_test(automatic,manual)

## End(Not run)

awmeade/psymetlab documentation built on Nov. 21, 2020, 11:39 p.m.