(window_functions)=
In this section you will learn about window functions. A window function utilizes values from one or multiple rows to produce a result for each individual row, unlike an aggregate function that provides a single value for multiple rows.
The window functions are available in the {py:mod}~datafusion.functions module.
We'll use the pokemon dataset (from Ritchie Vink) in the following examples.
from datafusion import SessionContext from datafusion import col, lit from datafusion import functions as f ctx = SessionContext() df = ctx.read_csv("pokemon.csv")
Here is an example that shows how you can compare each pokemon's speed to the speed of the previous row in the DataFrame.
df.select( col('"Name"'), col('"Speed"'), f.lag(col('"Speed"')).alias("Previous Speed") )
You can control the order in which rows are processed by window functions by providing a list of order_by functions for the order_by parameter.
df.select( col('"Name"'), col('"Attack"'), col('"Type 1"'), f.rank( partition_by=[col('"Type 1"')], order_by=[col('"Attack"').sort(ascending=True)], ).alias("rank"), ).sort(col('"Type 1"'), col('"Attack"'))
A window function can take a list of partition_by columns similar to an {ref}Aggregation Function<aggregation>. This will cause the window values to be evaluated independently for each of the partitions. In the example above, we found the rank of each Pokemon per Type 1 partitions. We can see the first couple of each partition if we do the following:
df.select( col('"Name"'), col('"Attack"'), col('"Type 1"'), f.rank( partition_by=[col('"Type 1"')], order_by=[col('"Attack"').sort(ascending=True)], ).alias("rank"), ).filter(col("rank") < lit(3)).sort(col('"Type 1"'), col("rank"))
When using aggregate functions, the Window Frame of defines the rows over which it operates. If you do not specify a Window Frame, the frame will be set depending on the following criteria.
order_by clause is set, the default window frame is defined as the rows between unbounded preceding and the current row.order_by is not set, the default frame is defined as the rows between unbounded and unbounded following (the entire partition).Window Frames are defined by three parameters: unit type, starting bound, and ending bound.
The unit types available are:
order_by clause must have exactly one term. The boundaries are defined bow how close the rows are to the value of the expression in the order_by parameter.order_by clause.In this example we perform a “rolling average” of the speed of the current Pokemon and the two preceding rows.
from datafusion.expr import Window, WindowFrame df.select( col('"Name"'), col('"Speed"'), f.avg(col('"Speed"')) .over(Window(window_frame=WindowFrame("rows", 2, 0), order_by=[col('"Speed"')])) .alias("Previous Speed"), )
When using aggregate functions as window functions, it is often useful to specify how null values should be treated. In order to do this you need to use the builder function. In future releases we expect this to be simplified in the interface.
One common usage for handling nulls is the case where you want to find the last value up to the current row. In the following example we demonstrate how setting the null treatment to ignore nulls will fill in with the value of the most recent non-null row. To do this, we also will set the window frame so that we only process up to the current row.
In this example, we filter down to one specific type of Pokemon that does have some entries in it's Type 2 column that are null.
from datafusion.common import NullTreatment df.filter(col('"Type 1"') == lit("Bug")).select( '"Name"', '"Type 2"', f.last_value(col('"Type 2"')) .over( Window( window_frame=WindowFrame("rows", None, 0), order_by=[col('"Speed"')], null_treatment=NullTreatment.IGNORE_NULLS, ) ) .alias("last_wo_null"), f.last_value(col('"Type 2"')) .over( Window( window_frame=WindowFrame("rows", None, 0), order_by=[col('"Speed"')], null_treatment=NullTreatment.RESPECT_NULLS, ) ) .alias("last_with_null"), )
You can use any {ref}Aggregation Function<aggregation> as a window function. Here is an example that shows how to compare each pokemons’s attack power with the average attack power in its "Type 1" using the {py:func}datafusion.functions.avg function.
df.select( col('"Name"'), col('"Attack"'), col('"Type 1"'), f.avg(col('"Attack"')).over( Window( window_frame=WindowFrame("rows", None, None), partition_by=[col('"Type 1"')], ) ).alias("Average Attack"), )
The possible window functions are:
datafusion.functions.rankdatafusion.functions.dense_rankdatafusion.functions.ntiledatafusion.functions.row_numberdatafusion.functions.cume_distdatafusion.functions.percent_rankdatafusion.functions.lagdatafusion.functions.leadAggregation Functions<aggregation> can be used as window functions.You can ship custom window functions to the engine by subclassing {py:class}~datafusion.user_defined.WindowEvaluator and registering it via {py:func}~datafusion.udwf. See {py:mod}datafusion.user_defined for the evaluator interface and worked examples.
:::{note} Serialization
Python window UDFs travel inline inside pickled or {py:meth}~datafusion.expr.Expr.to_bytes-serialized expressions — the evaluator class is captured by value via {mod}cloudpickle, so worker processes do not need to pre-register the UDF. Any names the evaluator resolves via import are captured by reference and must be importable on the receiving worker. See {py:mod}datafusion.ipc for the full IPC model and security caveats. :::