visEDA: visEDA

Description Usage Arguments Value See Also Examples

View source: R/AssumptionEvaluation.R

Description

A function for visual exploratory data analysis. This function provides three common plots useful for visually exploring data and testing assumptions prior to statistical analysis.

Usage

1
visEDA(dat)

Arguments

dat

(data.frame) A data.frame for which variables are to be explored.

Value

A gridExtra::grid.arrange grob object with a Density plot, Normal QQ plot and Histogram for each numeric variable in the data.frame. Each grid.arrange grob contains the following graphs: /describe

See Also

shapiro.test, ks.test, grid.arrange, ggqqplot

Examples

1
2
dat <- data.frame(y = rnorm(15,0,1),x = {rnorm(15,0,1) + rnorm(15,0,.02)})
visEDA(dat)

yogat3ch/HDA documentation built on Sept. 13, 2019, 8:54 p.m.