dataViewer(tkWidgets)
dataViewer()所属R语言包:tkWidgets
Function to view a data object passed
函数来查看数据对象传递
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function creates a widget to allow users to view the content of a data frame passed and decide whether to save the data or not.
这个函数创建一个部件,以允许用户查看通过一个数据框的内容,并决定是否保存数据或不。
用法----------Usage----------
dataViewer(data, caption = "", save = TRUE)
参数----------Arguments----------
参数:data
data a data frame (or alike) to be viewed
data一个数据框(或相似)被视为
参数:caption
caption a character string for the title of the widget
caption一个widget的标题字符串
参数:save
save a boolean to indicate whether to have the option to allow users to save the data
save一个布尔值,指示是否有选项,允许用户保存数据
Details
详情----------Details----------
Taking a data frame as one of the arguments, this function builds a widget that allows users to view the content of the data and save the data as a file.
以一个数据框的参数之一,此功能建立了一个部件,它允许用户查看数据的内容,并保存为一个文件的数据。
值----------Value----------
This function does not return any value
此函数不返回任何值
作者(S)----------Author(s)----------
Jianhua Zhang
参考文献----------References----------
<h3>See Also</h3>
举例----------Examples----------
# Create matrix[创建矩阵]
data <- matrix(1:20, ncol = 4)
if(interactive()){
# View data using dataViewer[查看数据使用DataViewer的]
dataViewer(data, "test", TRUE)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|