v2.0.0
Changelog
v2.0.0 (2023-09-07)
⚠ BREAKING CHANGE
-
The function
utils.pair_plot
is removed. -
function
edvart.utils.is_categorical
is removed.edvart.data_types.is_categorical
can be used instead, with similar behavior. -
Slightly changes behavior of column selection for someplots, e.g. parallel categories is now stricter in choosing which
columns are considered as categorical. -
Parameter
string_representation
ofedvart.data_types.infer_data_type
removed.
Callstr
on the result instead to get the string representation. -
Class
edvart.report_sections.dataset_overview.ConstantOccurence
renamed to
ConstantOccurrence
. -
Parameter
verbosity_constant_occurence
ofedvart.report.ReportBase.add_overview
renamed to
verbosity_constant_occurrence
. -
Enum value
ConstantOccurence
ofedvart.report_sections.dataset_overview.Overview.OverviewSubsection
changed toConstantOccurrence
. -
The name of
edvart.report_sections.timeseries_analysis.TimeAnalysisPlot
was
changed to
edvart.report_sections.timeseries_analysis.TimeSeriesLinePlot
. -
Change Verbosity values. LOW is now 1 (was 0), MEDIUMis 2 (was 1) and HIGH is 3 (was 2).
Features
- remove warning (#104)
(3c33b6e),
closes #104
#94 - Remove
utils.is_categorical
(#108)
(39df303),
closes #108
#25 - replace warnings with markdown printouts (#94)
(7ef547b),
closes #94
#41 - remove parameter
string_representation
frominfer_data_type
(#115)
(0bab9ca),
closes #115 - render constant as italic (#114)
(9fa36a4),
closes #114
#57 - Plot pairplot with tight layout. (#91)
(98b31cf),
closes #91 - Add
UNIQUE
data type (#70)
(c5956ca),
closes #70
#33 - change Verbosity enum values (#84)
(6a2bbcf),
closes #84 - make addition of ToC idempotent (#74)
(726f634),
closes #74 - add
equal_scale_axes
to 2D scatter plot (#40)
(307c40a),
closes #40 - Added dataset_name and dataset_description params to export_notebook (#60)
(6e411ad),
closes #60
#59 - Refactor
Report
intoReport
andDefaultReport
. (#47)
(d664e6c),
closes #47
#45