write.FileList(RQDA)
write.FileList()所属R语言包:RQDA
Import a batch of files to the source table
进口了一批文件的源表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
If import individual file to the project, you can do it by clicking import button in the Files Tab. Sometimes, you want to import a batch of files quickly, you can do it by command. This function is used to import a batch of files into the source table in the *.rqda file.
如果导入个人文件添加到项目,你可以做到这一点,单击“导入”按钮,在“文件”选项卡。有时候,你想快速导入一批文件,你可以做到这一点的命令。此功能是用来导入一批文件到源表中*。rqda文件。
用法----------Usage----------
write.FileList(FileList, encoding = .rqda$encoding, con = .rqda$qdacon, ...)
参数----------Arguments----------
参数:FileList
A list. Each element of the list is the file content, and the names(FileList) are the respective file name.
一个列表。列表中的每个元素是该文件的内容,names(FileList)是各自的文件名。
参数:encoding
Don't change this argument.
请不要更改此参数。
参数:con
Don't change this argument.
请不要更改此参数。
参数:...
... is not used.
...不被使用。
Details
详细信息----------Details----------
The file content will converted to UTF-8 character before write to *.rqda. The original content can be in any suitable encoding, so you can inspect the content correctly; In other words,the better practices is to used the corresponding encoding (you can get a hint by localeToCharset function) to save the imported files.
该文件的内容将转换为UTF-8字符前写为*。rqda。原来的内容可以在任何合适的编码,所以你可以检查内容是否正确;换句话说,更好的做法是使用相应的编码(你可以得到一个提示的localeToCharset功能)以保存导入的文件。
值----------Value----------
This function is used for the side-effects. No value is return.
用于此功能的副作用。任何价值的回报。
(作者)----------Author(s)----------
Huang Ronggui
实例----------Examples----------
## Not run: [#不运行:]
Files <- list("File name one"="content of first File.",
"File name two"="content of the second File.")
write.FileList(Files) ## Please launch RQDA(), and open a project first.[#请:推出RQDA(),首先打开一个项目。]
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|