write.arff(foreign)
write.arff()所属R语言包:foreign
Write Data into ARFF Files
ARFF文件写入数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Writes data into Weka Attribute-Relation File Format (ARFF) files.
WEKA属性关系的文件格式(ARFF)文件写入数据。
用法----------Usage----------
write.arff(x, file, eol = "\n", relation = deparse(substitute(x)))
参数----------Arguments----------
参数:x
the data to be written, preferably a matrix or data frame. If not, coercion to a data frame is attempted.
要写入的数据,最好是一个矩阵或数据框。如果不是,试图强迫一个数据框。
参数:file
either a character string naming a file, or a connection. "" indicates output to the standard output connection.
无论是一个字符串,命名一个文件,或一个连接。 ""表示输出到标准输出连接。
参数:eol
the character(s) to print at the end of each line (row).
(S)的字符打印在每一行(列)。
参数:relation
The name of the relation to be written in the file.
关系的名字被写在文件中。
Details
详情----------Details----------
relation will be passed through make.names before writing to the file, in an attempt to it them acceptable to Weka, and column names what do not start with an alphabetic character will have X prepended.
relation将通过make.names前书面文件,在尝试,他们接受WEKA,将有什么不以英文字母开始的列名X前面。
However, the references say that ARFF files are ASCII files, and that encoding is not enforced.
然而,引用说ARFF文件是ASCII文件,不执行编码。
参考文献----------References----------
http://www.cs.waikato.ac.nz/~ml/weka/arff.html<br> http://weka.sourceforge.net/wekadoc/index.php/en:ARFF_(3.5.1)
参见----------See Also----------
read.arff
read.arff
举例----------Examples----------
write.arff(iris, file = "")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|