Calls utils::View()
on the input and returns it, invisibly.
If the input is not a data frame, it is processed using a variant of
as.data.frame(head(x, n))
.
A message is printed if the number of rows exceeds n
.
This function has no effect in noninteractive sessions.
view(x, title = NULL, ..., n = NULL)
The object to display.
The title to use for the display, by default the deparsed expression is used.
Unused, must be empty.
Maximum number of rows to display. Only used if x
is not a
data frame. Uses the view_max
option by default.
The RStudio IDE overrides utils::View()
, this is picked up
correctly.