Skip to content

v2.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 07 Sep 12:43
· 90 commits to main since this release
81570b1

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.
    Call str on the result instead to get the string representation.

  • Classedvart.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 to ConstantOccurrence.

  • The name ofedvart.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

Fixes

  • Fix usage of missing data type in univariate analysis (#71)
    (7e9cd46),
    closes #71
  • set default plotly renderer when exporting to HTML (#99)
    (8c40532),
    closes #99