Generate reports from Rsquared Academy packages
The goal of report is to generate automated reports for summary statistics, RFM analysis, linear and logistic regression using the following packages:
# Install development version from GitHub
# install.packages("devtools")
devtools::install_github("rsquaredacademy/report")
Before generating the reports, it is important to ensure that the data
used in the report is defined in the current session i.e. when you run
ls()
in the console, the data must be listed by R.
library(descriptr)
report_descriptr()
rfm_data <- rfm::rfm_data_orders
report_rfm()
model_data <- descriptr::mtcarz
report_ols()
model_data <- blorr::bank_marketing
report_blr()
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.