powered by
Stream row count
stream_count(x)
A single integer giving the total number of rows across all partitions.
A shard_row_groups or shard_dataset handle.
shard_row_groups
shard_dataset
# \donttest{ s <- schema(x = float64()) sink <- table_sink(s, mode = "row_groups") table_write(sink, 1L, data.frame(x = rnorm(5))) rg <- table_finalize(sink) stream_count(rg) # }
Run the code above in your browser using DataLab