glimpse.dm | R Documentation |
dm
objectglimpse()
provides an overview (dimensions, column data types, primary
keys, etc.) of all tables included in the dm
object. It will additionally
print details about outgoing foreign keys for the child table.
glimpse()
is provided by the pillar package, and re-exported by dm.
See pillar::glimpse()
for more details.
## S3 method for class 'dm'
glimpse(x, width = NULL, ...)
## S3 method for class 'dm_zoomed'
glimpse(x, width = NULL, ...)
x |
A |
width |
Controls the maximum number of columns on a line used in
printing. If |
... |
Passed to |
dm_nycflights13() %>% glimpse()
dm_nycflights13() %>%
dm_zoom_to(flights) %>%
glimpse()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.