View source: R/continuous_multg.R
continuous_multg | R Documentation |
Generates a HTML table of bivariate analysis for 2 groups.
continuous_multg(data, groupvar, flextableformat = TRUE)
data |
Data frame from which variables will be extracted. |
groupvar |
Grouping variable. Must have exactly 2 levels. |
flextableformat |
Logical operator to indicate the output desired. Default is TRUE. When FALSE, function will return a dataframe format. |
A dataframe or flextable containing pvalues for each test along with the normality and homocedasticity tests p values. An extra column will be shown indicating the recommended significant test
data <- iris
data$Species<-as.factor(data$Species)
continuous_multg(data = data, groupvar = "Species", flextableformat = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.