plot.rvgt.ftable(rvgtest)
plot.rvgt.ftable()所属R语言包:rvgtest
Plot RVG Frequency Table
图RVG频率表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Method for plotting the density of an RVG frequency table.
方法策划的密度的RVG频率表。
用法----------Usage----------
## S3 method for class 'rvgt.ftable':
plot(x, rows, alpha = 0.01, ...)
参数----------Arguments----------
参数:x
object of class "rvgt.ftable".
对象类"rvgt.ftable"。
参数:rows
integer or array of integers that indicate the rows of the table for which the density is plotted. If missing all rows are used.
整数或表明密度绘制的表,其中的行的整数数组。如果丢失了所有的行。
参数:alpha
significance level for plotting critical values.
绘制临界值的显着性水平。
参数:...
further graphical parameters.
进一步的图形参数。
Details
详细信息----------Details----------
plot creates a density plot for the given RVG frequency table. The display zooms into the union of the range of frequency values and 2 times the confidence intervals for the frequencies. Thus it visualizes significant deviations from the unifrom distributions. The critical values for significance level alpha are marked by a red (dashed) line.
plot创建一个密度图给定的的RVG频率表。显示放大到置信区间的频率的频率值和2倍的范围内的联合。因此,可视化的unifrom分布显着偏离。的临界值的显着性水平alpha的标志是一个红色的(虚线)。
rows is either a number or a vector of numbers that indicate the rows of RVG tabel x which are merged (cumulated) for the plot. If this argument is missing, all rows are merged.
rows是一个数字或一个矢量的数字表明行的RVG TABEL x的图被合并(累积)。如果此参数丢失,所有的行合并。
(作者)----------Author(s)----------
Sougata Chaudhuri <a href="mailto:sgtchaudhuri@gmail.com">sgtchaudhuri@gmail.com</a>,
Josef Leydold <a href="mailto:josef.leydold@wu.ac.at">josef.leydold@wu.ac.at</a>
参见----------See Also----------
rvgt.ftable for creating the frequency table; hist for the height of the drawn rectangle.
rvgt.ftable,用于创建的频率表;hist所绘制的矩形的高度。
实例----------Examples----------
## Create a frequency table for normal distribution and show histogram.[#创建一个频率正态分布表,并显示直方图。]
## Use a sample of size of 5 times 10^5 random variates.[#使用的样本尺寸的5倍,10 ^ 5个随机变数。]
ft <- rvgt.ftable(n=1e5,rep=5, rdist=rnorm,qdist=qnorm, mean=1,sd=2)
## Plot histogram[#绘制直方图]
plot(ft)
## Plot histogram for row 1 only[#绘制直方图的第1行]
plot(ft,rows=1)
## Plot histogram for rows 2 and 4 only[第2行和4只绘制直方图]
plot(ft,rows=c(2,4))
## Same with the buggy random variate generator[#与车的随机变量发生器]
## (try to increase sample size 'n' or 'rep')[#(增加样本量n或代表)]
RNGkind(normal.kind="Buggy Kinderman-Ramage")
ft <- rvgt.ftable(n=1e5,rep=1, rdist=rnorm,qdist=qnorm)
plot(ft)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|