view {svViews}R Documentation

View the content of an object in a HTML document

Description

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.

Usage

    view(x, type = "summary", objname = deparse(substitute(x)), ...)

Arguments

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

Value

The name of a temporary file containing the generated view.

Author(s)

Eric Lecoutre & Philippe Grosjean

See Also

report, viewHTMLinit

Examples

    ## Not run: 
        data(iris)
        view(iris)
        iris.pc <- princomp(iris[, 1:4])
        view(iris.pc)
        view(ls)
    
## End(Not run)

[Package svViews version 0.8-2 Index]