Skip to content

Basic Statistical Analysis Tests

kirkvanacore edited this page May 24, 2021 · 1 revision

Descriptive Statistics 

Simplest six summary stats summary(df$var)

Descriptives

describe(df[,
                c(
					"Continuous Variables"
                )
                ])

describeBy(
  df[,
         c(
           "Continuous Variables"
         )
         ],
            group = df$`Group Variable`)

Clone this wiki locally