view {svViews} | R Documentation |
Views are rich-formatted presentations of the content of R objects. They provide an easy way to inspect them, combining formatted text, tables and graphs.
view(x, type = "summary", objname = deparse(substitute(x)), ...)
x |
An R object |
type |
The type of view to display. use type = "typelist" to get the list
of views available for a given object |
objname |
The name to use in the title of the view. By default, it is the actual name of the object |
... |
Further arguments (depending on the object and on type |
The name of a temporary file containing the generated view.
Eric Lecoutre & Philippe Grosjean
## Not run: data(iris) view(iris) iris.pc <- princomp(iris[, 1:4]) view(iris.pc) view(ls) ## End(Not run)