This is a demonstration package for the book R in Action (3rd ed.). It contains functions for exploratory data analysis.
You can install this package with the following code:
if(!require(remotes)){
install.packages("remotes")
}
remotes::install_github("rkabacoff/edatools")
This is a basic example which shows you how to describe a data frame:
library(edatools)
df_info<- contents(happiness)
df_info
plot(df_info)