data.frame
of descriptive statistical values.overview.Rd
Gives a statistical overview of the input data,
returns a data.frame
of descriptive statistical values.
overview(input, quiet = FALSE)
A dataframe or tibble containing numeric data
Optional boolean value for creating global variables for use elsewhere in the environment, default is FALSE
Data.frame containing all calculated values
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