read.svmlight(RSofia)
read.svmlight()所属R语言包:RSofia
Read Files in SVM-Light Format
SVM-光格式的读取文件中的
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Read datasets in SVM-Light sparse data format:
SVM-光稀疏数据格式的数据集:
<class-label> <feature-id>:<feature-value> ... <feature-id>:<feature-value>\n
<class-label> <feature-id>:<feature-value> ... <feature-id>:<feature-value>\n
<class-label> qid:<optional-query-id> <feature-id>:<feature-value> ... <feature-id>:<feature-value>\n
<class-label> qid:<optional-query-id> <feature-id>:<feature-value> ... <feature-id>:<feature-value>\n
<class-label> <feature-id>:<feature-value> ... <feature-id>:<feature-value># Optional comment or extra data, following the optional "#" symbol.\n
<class-label> <feature-id>:<feature-value> ... <feature-id>:<feature-value># Optional comment or extra data, following the optional "#" symbol.\n
用法----------Usage----------
read.svmlight(file)
参数----------Arguments----------
参数:file
a character string giving the name of the file to read.
给予要读取的文件的名称的字符串。
Details
详细信息----------Details----------
I don't believe this implementation of "read.svmlight" to be particularly robust and should be used with caution.
我不相信这个实施"read.svmlight"特别是强大的,应谨慎使用。
值----------Value----------
read.svmlight returns a list containing the following components:
read.svmlight返回一个列表,其中包含以下组件:
参数:data
a numeric matrix. The explanatory variables for the model
数字矩阵。为模型的解释变量
参数:labels
a numeric vector. The response variable
一个数值向量。应变量
参数:no_bias_term
NULL
NULL
参见----------See Also----------
write.svmlight
write.svmlight
实例----------Examples----------
data(irismod)
x <- parse_formula(Is.Virginica ~ ., irismod)
tmp <- tempfile()
write.svmlight(x$labels, x$data, file = tmp)
irismod.svmlight <- read.svmlight(tmp)
unlink(tmp)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|