Learn R Programming

lessR (version 2.2)

full: Full Descriptive Analysis of all Variables in the Data Frame

Description

Call the following functions in this package: ss, hst and bc. The result is set of summary statistics for every variable in the data frame, by default called mydata, a histogram for each numerical variable and a bar chart for each non-numerical variable.

Usage

full(x=mydata)

Arguments

x
Data frame that contains the variables to analyze, by default mydata.

Details

full is designed to work in conjunction with the function rad from this package, which reads a csv file into the data frame mydata.

See Also

ss, hst, bc.

Examples

Run this code
# create data frame called mydata
n <- 12
X <- sample(c("Group1","Group2"), size=n, replace=TRUE)
Y <- rnorm(n=n, mean=50, sd=10)
mydata <- data.frame(X,Y)
rm(X); rm(Y);

# full descriptive analysis of mydata
full()

Run the code above in your browser using DataLab