over
over.Rd
Define a windowing column.
Arguments
- x
a Column, usually one returned by window function(s).
- window
a WindowSpec object. Can be created by
windowPartitionBy
orwindowOrderBy
and configured by other WindowSpec methods.
Examples
if (FALSE) {
df <- createDataFrame(mtcars)
# Partition by am (transmission) and order by hp (horsepower)
ws <- orderBy(windowPartitionBy("am"), "hp")
# Rank on hp within each partition
out <- select(df, over(rank(), ws), df$hp, df$am)
# Lag mpg values by 1 row on the partition-and-ordered table
out <- select(df, over(lead(df$mpg), ws), df$mpg, df$hp, df$am)
}