Skip to content

Commit 5463c0a

Browse files
committed
Fix boxplot join_rm (closes mwaskom#116)
1 parent 2ea19d9 commit 5463c0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

seaborn/distributions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def boxplot(vals, groupby=None, names=None, join_rm=False, order=None,
210210

211211
# Draw the joined repeated measures
212212
if join_rm:
213-
x, y = np.arange(1, len(np.transpose(vals)) + 1), np.transpose(vals)
213+
x, y = np.arange(1, len(vals) + 1), vals
214214
if not vertical:
215215
x, y = y, x
216216
ax.plot(x, y, color=gray, alpha=2. / 3)

0 commit comments

Comments
 (0)