We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2801bdc + 42be204 commit 3574069Copy full SHA for 3574069
pandas/tests/test_graphics.py
@@ -2272,7 +2272,7 @@ def test_grouped_box_return_type(self):
2272
columns2 = 'X B C D A G Y N Q O'.split()
2273
df2 = DataFrame(random.randn(50, 10), columns=columns2)
2274
categories2 = 'A B C D E F G H I J'.split()
2275
- df2['category'] = tm.choice(categories2, size=50)
+ df2['category'] = categories2 * 5
2276
2277
types = {'dict': dict, 'axes': matplotlib.axes.Axes, 'both': tuple}
2278
for t, klass in iteritems(types):
0 commit comments