Skip to content

Commit 3eceb48

Browse files
committed
[JTH] fix bug in 2 vars plots in LHS
1 parent 815ff44 commit 3eceb48

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

bluemath_tk/datamining/_base_datamining.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ def plot_generated_data(
9090
sharex=False,
9191
sharey=False,
9292
)
93+
if isinstance(axes, Axes):
94+
axes = np.array([[axes]])
9395

9496
for c1, v1 in enumerate(variables_names[1:]):
9597
for c2, v2 in enumerate(variables_names[:-1]):

0 commit comments

Comments
 (0)