Learn R Programming

DriveML (version 0.1.5)

autoMLReport: Display autoMLmodel output in HTML format using Rmarkdown

Description

This function will generate R markdown report for DriveML model object

Usage

autoMLReport(mlobject, mldata = NULL, op_file = NULL, op_dir = NULL)

Value

HTML R Markdown output

Arguments

mlobject

[autoMLmodel Object | Required] autoMLmodel function output

mldata

[autoDataprep Object | Optional] autoDataprep function output

op_file

[character | Required] output file name (.html)

op_dir

[character | Optional] output path. Default path is the current working directory

Details

Using this function we can easily present the model outcome in standard HTML format without writing Rmarkdown scripts

Examples

Run this code
## Creating HTML report
# \donttest{
 autoMLReport(heart.model, mldata = NULL, op_file = "sample.html", op_dir = tempdir())
 # }

Run the code above in your browser using DataLab