nrow | R Documentation |
nrow() but also works on remote tables
nrow(.data)
.data |
( |
The number of records in the object.
conn <- get_connection()
m <- dplyr::copy_to(conn, mtcars)
nrow(m) == nrow(mtcars) # TRUE
close_connection(conn)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.