Skip to content
Merged
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
6 changes: 5 additions & 1 deletion java/src/main/java/ai/rapids/cudf/Aggregation.java
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,11 @@ static NuniqueAggregation nunique(NullPolicy nullPolicy) {
}

/**
* Get the nth, non-null, element in a group.
* Get the nth element in a group.
* <p>
* NULL values are included (i.e. a NULL element can be returned). Use
* {@link #nth(int, NullPolicy)} to control NULL policy.
*
* @param offset the offset to look at. Negative numbers go from the end of the group. Any
* value outside of the group range results in a null.
*/
Expand Down
Loading