From 2df1b082b1be1440670948468010d5cc31d95f02 Mon Sep 17 00:00:00 2001 From: Marshall Crumiller Date: Mon, 12 Feb 2024 13:45:05 -0500 Subject: [PATCH] Update API --- py-polars/docs/source/reference/expressions/string.rst | 4 +++- py-polars/docs/source/reference/series/string.rst | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/py-polars/docs/source/reference/expressions/string.rst b/py-polars/docs/source/reference/expressions/string.rst index 831edce162b0..1b4159814b81 100644 --- a/py-polars/docs/source/reference/expressions/string.rst +++ b/py-polars/docs/source/reference/expressions/string.rst @@ -22,6 +22,7 @@ The following methods are available under the `expr.str` attribute. Expr.str.extract_all Expr.str.extract_groups Expr.str.find + Expr.str.head Expr.str.json_decode Expr.str.json_extract Expr.str.json_path_match @@ -33,6 +34,7 @@ The following methods are available under the `expr.str` attribute. Expr.str.n_chars Expr.str.pad_end Expr.str.pad_start + Expr.str.parse_int Expr.str.replace Expr.str.replace_all Expr.str.replace_many @@ -51,6 +53,7 @@ The following methods are available under the `expr.str` attribute. Expr.str.strip_prefix Expr.str.strip_suffix Expr.str.strptime + Expr.str.tail Expr.str.to_date Expr.str.to_datetime Expr.str.to_decimal @@ -60,4 +63,3 @@ The following methods are available under the `expr.str` attribute. Expr.str.to_time Expr.str.to_uppercase Expr.str.zfill - Expr.str.parse_int diff --git a/py-polars/docs/source/reference/series/string.rst b/py-polars/docs/source/reference/series/string.rst index fbbe261e92f7..93bc038619bb 100644 --- a/py-polars/docs/source/reference/series/string.rst +++ b/py-polars/docs/source/reference/series/string.rst @@ -22,6 +22,7 @@ The following methods are available under the `Series.str` attribute. Series.str.extract_all Series.str.extract_groups Series.str.find + Series.str.head Series.str.json_decode Series.str.json_extract Series.str.json_path_match @@ -33,6 +34,7 @@ The following methods are available under the `Series.str` attribute. Series.str.n_chars Series.str.pad_end Series.str.pad_start + Series.str.parse_int Series.str.replace Series.str.replace_all Series.str.replace_many @@ -51,6 +53,7 @@ The following methods are available under the `Series.str` attribute. Series.str.strip_prefix Series.str.strip_suffix Series.str.strptime + Series.str.tail Series.str.to_date Series.str.to_datetime Series.str.to_decimal @@ -60,4 +63,3 @@ The following methods are available under the `Series.str` attribute. Series.str.to_titlecase Series.str.to_uppercase Series.str.zfill - Series.str.parse_int