The function generates an interactive HTML report using Standard Person Query data as an input. The report contains a full Information Value analysis, a data exploration technique that helps determine which columns in a data set have predictive power or influence on the value of a specified dependent variable.
Usage
IV_report(
data,
predictors = NULL,
outcome,
bins = 5,
max_var = 9,
path = "IV report",
timestamp = TRUE
)
Arguments
- data
A Standard Person Query dataset in the form of a data frame.
- predictors
A character vector specifying the columns to be used as predictors. Defaults to NULL, where all numeric vectors in the data will be used as predictors.
- outcome
A string specifying a binary variable, i.e. can only contain the values 1 or 0.
- bins
Number of bins to use in
Information::create_infotables()
, defaults to 10.- max_var
Numeric value to represent the maximum number of variables to show on plots.
- path
Pass the file path and the desired file name, excluding the file extension. For example,
"IV report"
.- timestamp
Logical vector specifying whether to include a timestamp in the file name. Defaults to TRUE.
Value
An HTML report with the same file name as specified in the arguments is generated in the working directory. No outputs are directly returned by the function.
See also
Other Reports:
generate_report()
,
meeting_tm_report()
,
read_preamble()
,
validation_report()
Other Variable Association:
create_IV()
Other Information Value:
create_IV()