View(utils)
View()所属R语言包:utils
Invoke a Data Viewer
调用数据浏览器
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Invoke a spreadsheet-style data viewer on a matrix-like R object.
像矩阵R对象上调用电子表格形式的数据查看器。
用法----------Usage----------
View(x, title)
参数----------Arguments----------
参数:x
an R object which can be coerced to a data frame with non-zero numbers of rows and columns.
一个R对象可以强制转换为一个非零数的行和列的数据框。
参数:title
title for viewer window. Defaults to name of x prefixed by Data:.
浏览器窗口的标题。默认命名xData:前缀。
Details
详情----------Details----------
Object x is coerced (if possible) to a data frame, and all non-numeric columns are then coerced to character. The object is then viewed in a spreadsheet-like data viewer, a read-only version of data.entry.
对象x被裹挟到一个数据框(如果可能),所有非数字列,然后强迫字符。类似电子表格的数据查看器,data.entry只读版本中的对象,然后观看。
If there are row names on the data frame that are not 1:nrow, they are displayed in a separate first column called row.names.
如果有排不上的数据框的名字1:nrow,他们都显示在一个单独的第一列名为row.names。
Objects with zero columns or zero rows are not accepted.
零列零行的对象是不能接受的。
The array of cells can be navigated via the scrollbars and by the cursor keys, Home, End, Page Up and Page Down.
单元阵列可以通过滚动条和光标键,主页,结束,PAGE UP和Page Down导航。
The initial size of the data viewer window is taken from the default dimensions of a pager (see Rconsole), but adjusted downwards to show a whole number of rows and columns.
数据查看器窗口的初始大小从寻呼机的默认尺寸(见Rconsole),但向下调整显示的行和列数。
值----------Value----------
Invisible NULL. The functions puts up a window and returns immediately: the window can be closed via its controls or menus.
无形的NULL。职能提出了一个窗口,并立即返回:窗口可以通过其控制或菜单关闭。
参见----------See Also----------
edit.data.frame, data.entry.
edit.data.frame,data.entry。
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|