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 ef5d806 commit d429432Copy full SHA for d429432
asv_bench/benchmarks/join_merge.py
@@ -48,6 +48,7 @@ def setup(self, axis):
48
index=date_range('20130101', periods=N, freq='s'))
49
self.empty_left = [DataFrame(), df]
50
self.empty_right = [df, DataFrame()]
51
+ self.mixed_ndims = [df, df.head(N // 2)]
52
53
def time_concat_series(self, axis):
54
concat(self.series, axis=axis, sort=False)
@@ -61,6 +62,9 @@ def time_concat_empty_right(self, axis):
61
62
def time_concat_empty_left(self, axis):
63
concat(self.empty_left, axis=axis)
64
65
+ def time_concat_mixed_ndims(self, axis):
66
+ concat(self.mixed_ndims, axis=axis)
67
+
68
69
class ConcatPanels(object):
70
0 commit comments