- .data
a tbl_dbi.
- output_format
report output type. Choose either "pdf" and "html".
"pdf" create pdf file by rmarkdown::render() and pagedown::chrome_print(). so,
you needed Chrome web browser on computer.
"html" create html file by rmarkdown::render().
- output_file
name of generated file. default is NULL.
- output_dir
name of directory to generate report file. default is tempdir().
- browse
logical. choose whether to output the report results to the browser.
- title
character. title of report. default is "Data Diagnosis Report".
- subtitle
character. subtitle of report. default is name of data.
- author
character. author of report. default is "dlookr".
- abstract_title
character. abstract title of report. default is
"Report Overview".
- abstract
character. abstract of report.
- title_color
character. color of title. default is "white".
- subtitle_color
character. color of title. default is "gold".
- thres_uniq_cat
numeric. threshold to use for "Unique Values -
Categorical Variables". default is 0.5.
- thres_uniq_num
numeric. threshold to use for "Unique Values -
Numerical Variables". default is 5.
- flag_content_zero
logical. whether to output "Zero Values" information.
the default value is TRUE, and the information is displayed.
- flag_content_minus
logical. whether to output "Minus Values" information.
the default value is TRUE, and the information is displayed.
- flag_content_missing
logical. whether to output "Missing Value" information.
the default value is TRUE, and the information is displayed.
- cover_img
character. name of cover image.
- create_date
Date or POSIXct, character. The date on which the report is generated.
The default value is the result of Sys.time().
- logo_img
character. name of logo image on top right.
- theme
character. name of theme for report. support "orange" and "blue".
default is "orange".
- sample_percent
numeric. Sample percent of data for performing Diagnosis.
It has a value between (0, 100]. 100 means all data, and 5 means 5% of sample data.
This is useful for data with a large number of observations.
- in_database
Specifies whether to perform in-database operations.
If TRUE, most operations are performed in the DBMS. if FALSE,
table data is taken in R and operated in-memory. Not yet supported in_database = TRUE.
- collect_size
a integer. The number of data samples from the DBMS to R.
Applies only if in_database = FALSE.
- as_factor
logical. whether to convert to factor when importing a character type variable from DBMS table into R.
- ...
arguments to be passed to pagedown::chrome_print().