inspect | R Documentation |
Print a short summary of the contents of an object. Most useful as a way to get a quick overview of the variables in data frame.
inspect(object, ...)
## S3 method for class 'list'
inspect(object, max.level = 2, ...)
## S3 method for class 'character'
inspect(object, ...)
## S3 method for class 'logical'
inspect(object, ...)
## S3 method for class 'numeric'
inspect(object, ...)
## S3 method for class 'factor'
inspect(object, ...)
## S3 method for class 'Date'
inspect(object, ...)
## S3 method for class 'POSIXt'
inspect(object, ...)
## S3 method for class 'data.frame'
inspect(object, select = TRUE, digits = getOption("digits", 3), ...)
## S3 method for class 'inspected_data_frame'
print(x, digits = NULL, ...)
object |
a data frame or a vector |
... |
additional arguments passed along to specific methods |
max.level |
an integer giving the depth to which lists should be expanded |
select |
a logical, character (naming variables), or numeric vector or a
function used to select variables to which |
digits |
and integer giving the number of digits to display |
x |
an object |
if (require(mosaicData)) {
inspect(Births78)
inspect(Births78, is.numeric)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.