This is an automated email from the ASF dual-hosted git repository. dongjoon pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push: new a5fe85fc116 [SPARK-45966][DOCS][PS] Add missing methods for API reference a5fe85fc116 is described below commit a5fe85fc11658c0212256f654e349c6ea9e18736 Author: Haejoon Lee <haejoon....@databricks.com> AuthorDate: Thu Nov 16 22:46:31 2023 -0800 [SPARK-45966][DOCS][PS] Add missing methods for API reference ### What changes were proposed in this pull request? This PR proposes to add missing methods for API reference. ### Why are the changes needed? For better API reference, we should reflect the actual status into the documentation. ### Does this PR introduce _any_ user-facing change? No API changes, but user-facing documentation will be improved. ### How was this patch tested? The existing CI, especially the documentation build should pass. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #43860 from itholic/SPARK-45966. Authored-by: Haejoon Lee <haejoon....@databricks.com> Signed-off-by: Dongjoon Hyun <dh...@apple.com> --- python/docs/source/reference/pyspark.pandas/indexing.rst | 6 ++++++ python/docs/source/reference/pyspark.pandas/series.rst | 1 + 2 files changed, 7 insertions(+) diff --git a/python/docs/source/reference/pyspark.pandas/indexing.rst b/python/docs/source/reference/pyspark.pandas/indexing.rst index 71584892ca3..7ec4387bb67 100644 --- a/python/docs/source/reference/pyspark.pandas/indexing.rst +++ b/python/docs/source/reference/pyspark.pandas/indexing.rst @@ -105,7 +105,9 @@ Missing Values Index.fillna Index.dropna Index.isna + Index.isnull Index.notna + Index.notnull Conversion ~~~~~~~~~~ @@ -190,6 +192,10 @@ Categorical components CategoricalIndex.as_ordered CategoricalIndex.as_unordered CategoricalIndex.map + CategoricalIndex.equals + CategoricalIndex.max + CategoricalIndex.min + CategoricalIndex.tolist .. _api.multiindex: diff --git a/python/docs/source/reference/pyspark.pandas/series.rst b/python/docs/source/reference/pyspark.pandas/series.rst index eb4a499c054..01fb5aa87fb 100644 --- a/python/docs/source/reference/pyspark.pandas/series.rst +++ b/python/docs/source/reference/pyspark.pandas/series.rst @@ -214,6 +214,7 @@ Missing data handling Series.backfill Series.bfill + Series.ffill Series.isna Series.isnull Series.notna --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org