Can we use DocumentPart in Report Generation?
1 次查看(过去 30 天)
显示 更早的评论
I want to generate a Report with template. Can I use DocumentPart in report generation? Does DocumentPart support to report? if not please suggest some alternative solution. Thank you.
Here I am attaching small example
import mlreportgen.report.*
import mlreprtgen.dom.*
R = Report('Report', 'docx', 'Template');
append(R, DocumentPart(R, 'Content'))
close(R)
rptview(R)
0 个评论
采纳的回答
更多回答(1 个)
Kevin Holly
2021-11-9
It looks like it can from the example from the documentation.
4 个评论
Kevin Holly
2021-11-9
Ah, reporter class... the example I linked appends it to a document class, but I believe you can append the document container to the reporter container. I think you need to append the DocumentPart to the Document container. Then I believe you could append that to the report. I haven't used this before, let me know if this works.
import mlreportgen.report.*
import mlreportgen.dom.*
R = Report('Report', 'docx', 'Template');
D = Document('test','docx');
append(D, DocumentPart(D.Type))
append(R,D)
close(R)
rptview(R)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!