nrow {SCDB} | R Documentation |
nrow() but also works on remote tables
Description
nrow() but also works on remote tables
Usage
nrow(.data)
Arguments
.data |
( |
Value
The number of records in the object.
Examples
conn <- get_connection()
m <- dplyr::copy_to(conn, mtcars)
nrow(m) == nrow(mtcars) # TRUE
close_connection(conn)
[Package SCDB version 0.4.0 Index]