table
R/compute.R
value_counts.Rd
This function tabulates the values in the array and returns a table of counts.
value_counts(x)
Array orChunkedArray
Array
ChunkedArray
AStructArray containing "values" (same type asx) and "counts"Int64.
StructArray
x
Int64
cyl_vals<-Array$create(mtcars$cyl)counts<-value_counts(cyl_vals)