Rev 61433 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/utils/man/View.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2009 R Core Team% Distributed under GPL 2 or later\name{View}\alias{View}\title{Invoke a Data Viewer}\description{Invoke a spreadsheet-style data viewer on a matrix-like \R object.}\usage{View(x, title)}\arguments{\item{x}{an \R object which can be coerced to a data frame withnon-zero numbers of rows and columns.}\item{title}{title for viewer window. Defaults to name of \code{x}prefixed by \code{Data:}.}}\details{Object \code{x} is coerced (if possible) to a data frame, and allnon-numeric columns are then coerced to character. The object isthen viewed in a spreadsheet-like data viewer, a read-only version of\code{\link{data.entry}}.If there are row names on the data frame that are not \code{1:nrow},they are displayed in a separate first column called \code{row.names}.Objects with zero columns or zero rows are not accepted.#ifdef unixThe array of cells can be navigated by the cursor keys and Home, End,Page Up and Page Down (where supported by X11) as well as Enterand Tab.#endif#ifdef windowsThe array of cells can be navigated \emph{via} the scrollbars andby the cursor keys, Home, End, Page Up and Page Down.The initial size of the data viewer window is taken from the defaultdimensions of a pager (see \code{\link{Rconsole}}), but adjusteddownwards to show a whole number of rows and columns.#endif}\value{Invisible \code{NULL}. The functions puts up a window and returnsimmediately: the window can be closed via its controls or menus.}\seealso{\code{\link{edit.data.frame}},\code{\link{data.entry}}.}\keyword{utilities}