Count
count.Rd
Count the number of rows for each group when we have GroupedData
input.
The resulting SparkDataFrame will also contain the grouping columns.
This can be used as a column aggregate function with Column
as input,
and returns the number of items in a group.
Usage
count(x)
n(x)
# S4 method for class 'GroupedData'
count(x)
# S4 method for class 'Column'
count(x)
# S4 method for class 'Column'
n(x)
Examples
if (FALSE) { # \dontrun{
count(groupBy(df, "name"))
} # }
if (FALSE) count(df$c) # \dontrun{}
if (FALSE) n(df$c) # \dontrun{}