An open-source Python library for Data Scientists & Data Analysts designed to simplify the exploratory data analysis process. Using Edvart, you can explore data sets and generate reports with minimal coding.
Add a method add_section to Report.
The method should supplement the existing methods add_<section_name>, e.g. add_univariate_analysis.
It should allow to add any class inheriting from edvart.report_sections.section_base.Section.
Add a method
add_section
toReport
. The method should supplement the existing methodsadd_<section_name>
, e.g.add_univariate_analysis
. It should allow to add any class inheriting fromedvart.report_sections.section_base.Section
.