Gives a statistical overview of the input data, returns a data.frame of descriptive statistical values.

overview(input, quiet = FALSE)

Arguments

input

A dataframe or tibble containing numeric data

quiet

Optional boolean value for creating global variables for use elsewhere in the environment, default is FALSE

Value

Data.frame containing all calculated values

Examples

df <- data.frame('col1'=c(1,2,3), 'col2'=c(2,3,6))
overview(df, quiet=FALSE)
#>          mean median standard.dev variance
#> col1 2.000000      2     1.000000 1.000000
#> col2 3.666667      3     2.081666 4.333333