WriteFile(RSurvey)
WriteFile()所属R语言包:RSurvey
Write Data File
写入数据文件
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Writes data to a file.
将数据写入到一个文件中。
用法----------Usage----------
WriteFile(file.type = "text", file.name = NULL, col.ids = NULL,
headers = c(FALSE, FALSE, FALSE), sep = "\t",
is.processed = TRUE, is.compressed = FALSE,
encoding = getOption("encoding"))
参数----------Arguments----------
参数:file.type
character; the output file type: either “text” for Text Files, “shape” for ESRI Shapefiles, or “grid” for Interpolated Grid Text Files.
字符的输出文件类型:要么“文本”的文本文件,ESRI形状的“形状”,或“网格”内插网格的文本文件。
参数:file.name
character; the name of the file which the data are to be written to.
字符的名称的文件,该文件的数据被写入到。
参数:col.ids
character; a vector of strings identifying the variables to include in the exported data table.
字符,字符串识别变量的向量,包括在导出的数据表。
参数:headers
logical; a vector of length 3 that indicates whether the data table contains header lines.
逻辑的矢量长度为3,表示数据表中是否包含标题行。
参数:sep
character; the field separator string.
字符的字段分隔符的字符串。
参数:is.processed
logical; if TRUE, only include record numbers in the processed data table, see ProcessData; its default is TRUE.
逻辑,如果TRUE,包括创纪录的数字处理过的数据表,请参阅ProcessData,其默认是:TRUE。
参数:is.compressed
logical; if TRUE, the file will be compressed by gzip; its default is FALSE.
逻辑; TRUE如果,该文件将被由gzip压缩的,它的默认值是FALSE。
参数:encoding
character; encoding to be assumed for input strings. If the value is "latin1" or "UTF-8" it is used to mark character strings as known to be in Latin-1 or UTF-8: it is not used to re-encode the input.
假设输入字符串的字符,编码。如果该值是"latin1"或"UTF-8"它是用来标记字符串的作为已知的Latin-1或UTF-8:它不是用来重新编码输入。
(作者)----------Author(s)----------
J.C. Fisher
参见----------See Also----------
write.table, writeOGR
write.table,writeOGR
实例----------Examples----------
data(project)
Data(replace.all = project)
WriteFile(file.type = "grid")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|