powered by
nrow() but also works on remote tables
nrow(.data)
The number of records in the object.
(data.frame(1), tibble(1), data.table(1), or tbl_dbi(1)) Data object.
data.frame(1)
tibble(1)
data.table(1)
tbl_dbi(1)
if (FALSE) { # requireNamespace("RSQLite", quietly = TRUE) conn <- get_connection() m <- dplyr::copy_to(conn, mtcars) nrow(m) == nrow(mtcars) # TRUE close_connection(conn) }
Run the code above in your browser using DataLab