Skip to content

Commit da65c52

Browse files
authored
Merge pull request #169 from quaquel/seaborn-shade-depr
Replace depreciated `shade` keyword in Seaborn kdeplot with `fill`
2 parents b25f9bd + ac0ae0c commit da65c52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ema_workbench/analysis/logistic_regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def plot_pairwise_scatter(self, i, threshold=0.95):
375375
data["y"] = self.y # for testing
376376
grid = sns.PairGrid(data=data, hue="y", vars=columns)
377377
grid.map_lower(plt.scatter, s=5)
378-
grid.map_diag(sns.kdeplot, shade=True)
378+
grid.map_diag(sns.kdeplot, fill=True)
379379
grid.add_legend()
380380

381381
contour_levels = np.arange(0, 1.05, 0.05)

0 commit comments

Comments
 (0)