This is a re-implementation of View that works within Jupyter notebooks by leveraging the Jupyter widgets infrastructure or by using the DataTable Javascript library. The latter is the case if the system option "View.backend" is set to "dataTable" or if this option is not set. Otherwise a 'virtable_widget' is used.

View(x, title = deparse(substitute(x)), ...)

# S3 method for default
View(x, title = deparse(substitute(x)), ...)

# S3 method for data.frame
View(x, title = deparse(substitute(x)), ...)

Arguments

x

An R object which can be coerced to a data frame with non-zero numbers of rows and columns.

title

A string used as title. Currently unused.

...

Other arguments, ignored.