View source: R/verbs_utility.R
| slice_head | R Documentation |
Select first or last rows
slice_head(.data, n = 1L)
slice_tail(.data, n = 1L)
slice_min(.data, order_by, n = 1L, with_ties = TRUE)
slice_max(.data, order_by, n = 1L, with_ties = TRUE)
.data |
A |
n |
Number of rows to select. |
order_by |
Column to order by (for |
with_ties |
If |
A vectra_node for slice_head() and slice_min/max(..., with_ties = FALSE). A data.frame for slice_tail() and
slice_min/max(..., with_ties = TRUE) (the default), since these must
materialize all rows.
f <- tempfile(fileext = ".vtr")
write_vtr(mtcars, f)
tbl(f) |> slice_head(n = 3) |> collect()
tbl(f) |> slice_min(order_by = mpg, n = 3) |> collect()
tbl(f) |> slice_max(order_by = mpg, n = 3) |> collect()
unlink(f)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.