mlreportgen.report.RptFile.customizeReporter
Class: mlreportgen.report.RptFile
Namespace: mlreportgen.report
Create custom Report Explorer-based reporter class
Syntax
reporter = mlreportgen.report.RptFile.customizeReporter(classpath)
Description
reporter = mlreportgen.report.RptFile.customizeReporter(
creates a Report Explorer-based reporter (classpath
)RptFile
) class definition file that
is a subclass of mlreportgen.report.RptFile
. The file is created at the
specified classpath
location. The
RptFile.customizeReporter
method also copies the default
RptFile
templates to the <classpath>/resources/template
folder. You can use the new class definition file as a starting point to design a custom
Report Explorer-based reporter class for your report.
Input Arguments
Output Arguments
Examples
Create Custom Report Explorer-based Reporter
Create a custom Report Explorer-based reporter and its associated default templates. The
derived class file is created at the specified path relative to the current working folder.
In this example, the path to the MyRptExplRptr.m
class file is
<current working
folder>/new_rptexpl_rptr/@MyRptExplRptr/MyRptExplRptr.m
. The default
RptFile
templates are in the <current working
folder>/new_rptexpl_rptr/@RptExplRptr/resources/templates
folder.
import mlreportgen.report.* RptFile.customizeReporter('new_rptexpl_rptr/@MyRptExplRptr');
After editing this new class file, you can use it as your RptFile
reporter.
rptr = MyRptExplRptr();
Version History
Introduced in R2019a