[docs]@singledispatchdefrelaxed_combine_columns(*x:Any):"""Combine n-dimensional objects along the second dimension. Args: x: n-dimensional objects to combine. All elements of x are expected to be the same class. Returns: Combined object, typically the same type as the first entry of ``x`` """raiseNotImplementedError("no `combine_columns` method implemented for '"+type(x[0]).__name__+"' objects.")