diff dashboard.py @ 10:e2a6fed32d54 draft default tip

planemo upload for repository https://github.com/goeckslab/gleam commit 47a5977e074223e92e216efa42969a4056516707
author goeckslab
date Fri, 01 Aug 2025 14:02:26 +0000
parents 1f20fe57fdee
children
line wrap: on
line diff
--- a/dashboard.py	Thu Jul 31 15:41:24 2025 +0000
+++ b/dashboard.py	Fri Aug 01 14:02:26 2025 +0000
@@ -76,7 +76,6 @@
         col.replace(".", "__").replace("{", "__").replace("}", "__")
         for col in X_test_df.columns
     ]
-
     explainer = ClassifierExplainer(
         estimator, X_test_df, exp.y_test_transformed, labels=labels_, **kwargs
     )
@@ -153,7 +152,11 @@
         estimator, X_test_df, exp.y_test_transformed, **kwargs
     )
     return ExplainerDashboard(
-        explainer, mode=display_format, contributions=False,
-        whatif=False, shap_interaction=False, decision_trees=False,
-        **dashboard_kwargs
+        explainer,
+        mode=display_format,
+        contributions=False,
+        whatif=False,
+        shap_interaction=False,
+        decision_trees=False,
+        **dashboard_kwargs,
     )