Class: mlreportgen.report.Reporter
Package: mlreportgen.report
Get implementation of reporter
impl = getImpl(reporter,report)
returns the DOM object used to implement this reporter. If you examine the
implementation file, it may help you to debug report generation problems.impl
= getImpl(reporter
,report
)
Obtain the DOM object used to create this reporter. This example shows how to use
getImpl
for a TitlePage reporter. You can use the
getImpl
method with any type of reporter.
import mlreportgen.report.* rpt = Report('My Report'); tp = TitlePage; tp.Title = 'Data Summary'; impl = getImpl(tp,rpt)