Ir al contenido

Carry out a t-test for two vectors and export it in a tidy format with broom.

Uso

association_num_dummy(x, y, ..., name_x = NULL, name_y = NULL)

Argumentos

x

A vector.

y

A vector.

...

Optional. Parameters of t.test function.

name_x

Optional. Name of the x variable (character).

name_y

Optional. Name of the y variable (character).

Valor

A data.frame with the results.

Ejemplos

association_num_dummy( mtcars$mpg, mtcars$vs  )
#> Error in loadNamespace(x): there is no package called ‘broom’
association_num_dummy( mtcars$vs, mtcars$mpg  ) # order is not important
#> Error in loadNamespace(x): there is no package called ‘broom’