fileWizard(tkWidgets)
fileWizard()所属R语言包:tkWidgets
A function that import a text file into R
一个功能,一个文本文件导入到R
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given a file name, this function imports the text file into R.
鉴于一个文件名,此功能导入到R的文本文件
用法----------Usage----------
fileWizard(filename = "", fun = read.table, file = "file",
basic = c("header", "sep"), getFocus = TRUE)
参数----------Arguments----------
参数:filename
A character string for the name of the text file to be imported
为要导入的文本文件的名称的一个字符串
参数:fun
An R function that is going to be used to read the file. Default to read.table
一个R函数将被用来阅读文件。默认read.table
参数:file
A character string for the name of the argument to fun that defines the name of the file to be read
一个有趣的论点,定义要读取的文件名的名称的字符串
参数:basic
A vector of character strings for names of the arguments to fun that will have separate entry boxes on the widget to be produced. Default to "header" and "sep"
一种乐趣,将有独立的输入框,将生产的部件的参数的名称字符串的向量。默认为“头”和“九月”
参数:getFocus
getFocus a boolean indicating whether a widget should grab the focus
getFocus一个布尔值,指示部件是否应该抓住重点
Details
详情----------Details----------
This function is only partially finished and will be improved soon. It currently allows uesrs to view a given file and change the settings for header and sep arguments of read.table. A file will be read in based on the values of the two arguments and return.
此功能仅部分完成,将很快得到改善。目前,它,允许uesrs查看一个给定的文件和改变的的read.table头及九月参数设置。基于两个参数和返回值的文件将被读取。
值----------Value----------
This function returns a data frame for the file read in.
这个函数返回一个数据框的文件读入
作者(S)----------Author(s)----------
Jianhua Zhang
参考文献----------References----------
<h3>See Also</h3>
举例----------Examples----------
if(interactive()) {
# Only the interface is displyed as no real file is given[因为没有真正的文件只有接口是displyed]
fileWizard()
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|