modelEDA_Report: Produce a standard modelEDA report

Description Usage Arguments Value See Also Examples

View source: R/modelEDA_Report.R

Description

modelEDA_Report produces a flexdashboard report based on a mt_modelEDA object.

Usage

1
2
modelEDA_Report(x, projectLabel = "Model EDA",
  outFile = "./modelEDA_Report.html", tempDir = ".tempDir")

Arguments

x

mt_modelEDA object

projectLabel

character string; description header for report home page

outFile

character string; file path/name for saving report (*.html)

tempDir

character string; temporary directory path

Value

No object is returned. The report is saved to the specified location.

See Also

modelEDA, flex_dashboard

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# binary target
modelEDA_Report(modelEDA(mtcars, "vs", 1))

# continuous target
modelEDA_Report(modelEDA(
    x = mtcars,
    yname = "mpg",
    ytype = 2,
    univariateGraph.yLabel = "Average MPG",
    univariateGraph.yType = "int",
    univariateGraph.yDigits = 1
))

dnegrey/miscTools documentation built on May 3, 2019, 2:57 p.m.