Join us for
RADAR: AI Edition

dm (version 0.2.8)

head.zoomed_dm: utils table manipulation methods for zoomed_dm objects

Description

Extract the first or last rows from a table. Use these methods without the '.zoomed_dm' suffix (see examples). The methods for regular dm objects extract the first or last tables.

Usage

# S3 method for zoomed_dm
head(x, n = 6L, ...)

# S3 method for zoomed_dm tail(x, n = 6L, ...)

Arguments

x

object of class zoomed_dm

n

an integer vector of length up to dim(x) (or 1, for non-dimensioned objects). Values specify the indices to be selected in the corresponding dimension (or along the length) of the object. A positive value of n[i] includes the first/last n[i] indices in that dimension, while a negative value excludes the last/first abs(n[i]), including all remaining indices. NA or non-specified values (when length(n) < length(dim(x))) select all indices in that dimension. Must contain at least one non-missing value.

...

arguments to be passed to or from other methods.

Value

A zoomed_dm object.

Details

see manual for the corresponding functions in utils.

Examples

Run this code
# NOT RUN {
zoomed <- dm_nycflights13() %>%
  dm_zoom_to(flights) %>%
  head(4)
zoomed
dm_insert_zoomed(zoomed, new_tbl_name = "head_flights")
# }

Run the code above in your browser using DataLab