plot.discrim(sensR)
plot.discrim()所属R语言包:sensR
Plot function for discrim objects
判别分析对象的绘图功能
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function plots the latent distributions of sensory intensity corresponding to the items or products tested in the discrimination test.
此函数绘制的潜感觉强度分布对应歧视测试中进行测试的项目或产品。
用法----------Usage----------
## S3 method for class 'discrim'
plot(x, main = TRUE, length = 1000, ...)
参数----------Arguments----------
参数:x
The discrim object whose latent distributions are to be plotted
要绘制的discrim对象,其潜在分布
参数:main
include an automatically generated title on the plot? Default is TRUE
包括在图上自动生成的标题?默认是TRUE
参数:length
the length of the vectors to be plotted. Longer vectors gives more smooth curves.
矢量的长度被绘制。更长的向量提供了更平滑的曲线。
参数:...
additional arguments to plot and lines
额外的参数plot和lines
(作者)----------Author(s)----------
Rune Haubo B Christensen
实例----------Examples----------
## Generate discrim objects to be plotted:[#中生成discrim对象要绘制:]
fm1 <- discrim(10, 15, method = "threeAFC")
fm2 <- discrim(10, 15, method = "triangle")
par(mfrow=c(2,1)) ## Split plotting window in two[#分割在两个绘图窗口]
## Plot the distributions of sensory intensity for the two objects[#画出的两个对象的感觉强度分布]
## and increase the line width[#和增加的线宽度]
plot(fm1, lwd=2)
plot(fm2, lwd=2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|