From 284a129ecb28e329468dfe31206c97db70b43ccf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Bel=C3=A1k?= Date: Fri, 13 Oct 2023 10:31:28 +0200 Subject: [PATCH] feat: disable missing bar plot by default In the missing values section, there is a horizontal bar plot already, which displays all the necessary information. The vertical bar plot is redundant, thus disable it by default. --- edvart/report_sections/dataset_overview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edvart/report_sections/dataset_overview.py b/edvart/report_sections/dataset_overview.py index d46a26a..3a53358 100644 --- a/edvart/report_sections/dataset_overview.py +++ b/edvart/report_sections/dataset_overview.py @@ -663,7 +663,7 @@ def missing_values( columns : Optional[List[str]], optional Subset of columns for which to calculate missing values percentage. If None, all columns of df are used. - bar_plot : bool + bar_plot : bool (default = False) Whether to also display a bar plot visualizing missing values percentages for each column. bar_plot_figsize : Tuple[int, int]