diff --git a/py-polars/polars/lazyframe/frame.py b/py-polars/polars/lazyframe/frame.py index d50c2867dd24..62dc7ff5fbba 100644 --- a/py-polars/polars/lazyframe/frame.py +++ b/py-polars/polars/lazyframe/frame.py @@ -5179,12 +5179,6 @@ def limit(self, n: int = 5) -> LazyFrame: n Number of rows to return. - Notes - ----- - Consider using the :func:`fetch` operation if you only want to test your - query. The :func:`fetch` operation will load the first `n` rows at the scan - level, whereas the :func:`head`/:func:`limit` are applied at the end. - Examples -------- >>> lf = pl.LazyFrame( @@ -5228,12 +5222,6 @@ def head(self, n: int = 5) -> LazyFrame: n Number of rows to return. - Notes - ----- - Consider using the :func:`fetch` operation if you only want to test your - query. The :func:`fetch` operation will load the first `n` rows at the scan - level, whereas the :func:`head`/:func:`limit` are applied at the end. - Examples -------- >>> lf = pl.LazyFrame(