From 135744b04b4698c70a9587f9eae05649faa8b761 Mon Sep 17 00:00:00 2001 From: Hussein Mahfouz <45176416+Hussein-Mahfouz@users.noreply.github.com> Date: Fri, 15 Nov 2024 17:02:24 +0100 Subject: [PATCH] color scale without white --- src/acbm/assigning/plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/acbm/assigning/plots.py b/src/acbm/assigning/plots.py index 55af6c82..1ec8a4b0 100644 --- a/src/acbm/assigning/plots.py +++ b/src/acbm/assigning/plots.py @@ -200,7 +200,7 @@ def plot_workzone_assignment_heatmap( ) ax = sns.heatmap( - heatmap_data, cmap="RdBu", ax=axes[i], cbar=i == len(categories) - 1 + heatmap_data, cmap="viridis", ax=axes[i], cbar=i == len(categories) - 1 ) axes[i].set_title(f"Demand Difference: % of {category} Total") axes[i].set_xlabel("Home Zone")