diff --git a/python/cudf/cudf/core/dataframe.py b/python/cudf/cudf/core/dataframe.py index 99e4588d608..66090525bd2 100644 --- a/python/cudf/cudf/core/dataframe.py +++ b/python/cudf/cudf/core/dataframe.py @@ -7541,6 +7541,12 @@ def interleave_columns(self): Returns ------- The interleaved columns as a single column + + .. pandas-compat:: + **DataFrame.interleave_columns** + + This method does not exist in pandas but it can be run + as ``pd.Series(np.vstack(df.to_numpy()).reshape((-1,)))``. """ if ("category" == self.dtypes).any(): raise ValueError(