str
applied to a data frame
but it tries to show you as much data as possible. (And it always shows
the underlying data, even when applied to a remote data source.)glimpse(x, width = NULL, ...)
tibble.width
or the width of the console.glimpse
to be
used within a data pipe line.glimpse
is an S3 generic with a customised method for tbl
s and
data.frames
, and a default method that calls str
.glimpse(mtcars)
if (require("Lahman")) {
glimpse(Lahman::Batting)
}
Run the code above in your browser using DataLab