foruse(yaImpute)
foruse()所属R语言包:yaImpute
Report a complete imputation
报告一个完整的归集
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Provides a matrix of all observations with the reference observation identification best used to represent it, followed by the distance.
提供了一个矩阵的所有观察值与基准的最佳观察识别用于表示它,随后的距离。
用法----------Usage----------
foruse(object,kth=NULL,method="kth",targetsOnly=FALSE)
参数----------Arguments----------
参数:object
an object created by yai
对象创建的yai
参数:kth
when NULL (and method="kth"), the best pick is reported (a reference observation represents itself), otherwise the kth neighbor is picked.
当NULL(和method="kth"),最好的选择(代表本身的参考观察),否则第k个邻居回升。
参数:method
the method used to select references to represent observations, as follows: <br> kth: the kth nearest neighbor is picked; <br> random: for each observation, the value of kth is selected at random from the 1 to k neighbors (1 to kth if is kth specified); <br> randomWeighted: 1/(1+d) is used as a probability weight factor in selecting the value of kth, where d is the distance..
所采用的方法选择代表意见的引用,如下:<BR> kth:第k个最近邻回升; <BR> random:每个观察,第k个值是随机选择的从1到k邻居(1kth如果kth指定);参考randomWeighted:1/(1+d)被用作一个概率权重因子选择的值的第k个,其中d是距离..
参数:targetsOnly
when is TRUE, reporting of references is not done.
为TRUE时,报告引用没有这样做。
(作者)----------Author(s)----------
Nicholas L. Crookston <a href="mailto:ncrookston.fs@gmail.com">ncrookston.fs@gmail.com</a> <br>
Andrew O. Finley <a href="mailto:finleya@msu.edu">finleya@msu.edu</a>
实例----------Examples----------
require(yaImpute)
data(iris)
# form some test data[形成一些测试数据。]
refs=sample(rownames(iris),50)
x <- iris[,1:3] # Sepal.Length Sepal.Width Petal.Length[Sepal.Length Sepal.Width Petal.Length]
y <- iris[refs,4:5] # Petal.Width Species[Petal.Width物种]
# build a yai object using mahalanobis[建立一个合艾对象使用马氏]
mal <- yai(x=x,y=y,method="mahalanobis",k=3)
foruse(mal) # for references, use is equal to the rowname[作为参考,使用等于到rowname]
foruse(mal,kth=1) # for references, use is an row to the kth reference.[为参考,采用的是行到第k个参考。]
# get all the choices:[让所有的选择:]
cbind(foruse(mal),foruse(mal,kth=1),foruse(mal,kth=2),foruse(mal,kth=3))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|