Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python/docs/source/reference/pyspark.pandas/frame.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ Computations / Descriptive Stats
DataFrame.count
DataFrame.cov
DataFrame.describe
DataFrame.ewm
DataFrame.kurt
DataFrame.kurtosis
DataFrame.mad
Expand Down
1 change: 1 addition & 0 deletions python/docs/source/reference/pyspark.pandas/series.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ Computations / Descriptive Stats
Series.cumsum
Series.cumprod
Series.describe
Series.ewm
Series.filter
Series.kurt
Series.mad
Expand Down
8 changes: 5 additions & 3 deletions python/docs/source/reference/pyspark.pandas/window.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ Window
======
.. currentmodule:: pyspark.pandas.window

Rolling objects are returned by ``.rolling`` calls: :func:`pandas_on_spark.DataFrame.rolling`, :func:`pandas_on_spark.Series.rolling`, etc.
Expanding objects are returned by ``.expanding`` calls: :func:`pandas_on_spark.DataFrame.expanding`, :func:`pandas_on_spark.Series.expanding`, etc.
ExponentialMoving objects are returned by ``.ewm`` calls: :func:`pandas_on_spark.DataFrame.ewm`, :func:`pandas_on_spark.Series.ewm`, etc.
Rolling objects are returned by ``.rolling`` calls: :func:`pyspark.pandas.DataFrame.rolling`, :func:`pyspark.pandas.Series.rolling`, etc.

Expanding objects are returned by ``.expanding`` calls: :func:`pyspark.pandas.DataFrame.expanding`, :func:`pyspark.pandas.Series.expanding`, etc.

ExponentialMoving objects are returned by ``.ewm`` calls: :func:`pyspark.pandas.DataFrame.ewm`, :func:`pyspark.pandas.Series.ewm`, etc.

Standard moving window functions
--------------------------------
Expand Down
Loading