We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fdabbc commit 73f5f9aCopy full SHA for 73f5f9a
vb_suite/frame_methods.py
@@ -158,9 +158,23 @@ def interactive_repr(frame):
158
159
df = pandas.DataFrame(np.random.randn(10,10000))
160
"""
161
-
+
162
frame_wide_repr = Benchmark('repr(df)', setup,
163
start_date=datetime(2012, 8, 1))
164
165
frame_wide_repr_interactive = Benchmark('interactive_repr(df)', setup,
166
167
168
+##
169
+setup = common_setup + """
170
+df = DataFrame(randn(100000, 1))
171
+"""
172
173
+frame_xs_row = Benchmark('df.xs(50000)', setup)
174
175
176
177
+df = DataFrame(randn(1,100000))
178
179
180
+frame_xs_col = Benchmark('df.xs(50000,axis = 1)', setup)
0 commit comments