plot.yai(yaImpute)
plot.yai()所属R语言包:yaImpute
Plot observed verses imputed data
图观察到的诗句估算数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Provides a matrix of plots of observed verses imputed values for variables in an object created by impute.yai, which are of class c("impute.yai","data.frame").
提供的矩阵图观察到的诗句估算值的变量中创建的对象的impute.yai,这是类c("impute.yai","data.frame")。
用法----------Usage----------
## S3 method for class 'yai'
plot(x,vars=NULL,pointColor=1,lineColor=2,spineColor=NULL,residual=FALSE,...)
参数----------Arguments----------
参数:x
<ol> a data frame created by impute.yai, or
<OL>创建一个数据框由impute.yai,或
an object created by yai. </ol>
创建的对象yai。 </ OL>
参数:vars
a list of variable names you want to include, if NULL all available Y-variables are included.
要包括,如果为NULL,所有可用的Y-变量的变量名的列表。
参数:pointColor
a color vector for the xy plots (continuous variables).
的颜色矢量的XY坐标图(连续变量)。
参数:lineColor
a color 1:1 lines in xy plots.
在XY坐标图的颜色1:1的线条。
参数:spineColor
a color vector for the spine plots (factors), one value per level.
脊柱图(因素)的颜色矢量,每级的一个值。
参数:residual
plots in a residual format (observed-imputed over imputed).
图剩余格式(观察估算超过估算)。
参数:...
passed to called functions.
传递给被调用的函数。
(作者)----------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物种]
mal <- yai(x=x,y=y,method="mahalanobis")
malImp=impute(mal,newdata=iris)
plot(malImp)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|