urnorm(Runuran)
urnorm()所属R语言包:Runuran
UNU.RAN Normal random variate generator
UNU.RAN正常随机变量发生器
译者:生物统计家园网 机器人LoveR
描述----------Description----------
UNU.RAN random variate generator for the Normal distribution with mean equal to mean and standard deviation to sd. It also allows sampling from the truncated distribution.
UNU.RAN的正态分布随机变量发生器的意思是等于mean和标准差来sd。它也允许采样截断分布。
[Special Generator] – Sampling Function: Normal (Gaussian).
[发电机] - 采样功能:正常(高斯)。
用法----------Usage----------
urnorm(n, mean = 0, sd = 1, lb = -Inf, ub = Inf)
参数----------Arguments----------
参数:n
size of required sample.
所需的样本大小。
参数:mean
mean of distribution.
平均分布。
参数:sd
standard deviation.
标准偏差。
参数:lb
lower bound of (truncated) distribution.
(截断)分布的下界。
参数:ub
upper bound of (truncated) distribution.
(截断)分布的上界。
Details
详细信息----------Details----------
If mean or sd are not specified they assume the default values of 0 and 1, respectively.
如果mean或sd不他们承担的默认值0和1,分别指定。
The normal distribution has density
正常的分布密度
where mu is the mean of the distribution and sigma the standard deviation.
mu是平均的分配和sigma的标准偏差。
The generation algorithm uses fast numerical inversion. The parameters lb and ub can be used to generate variates from the Normal distribution truncated to the interval (lb,ub).
的生成算法采用快速的数值反演。参数lb和ub可以用来产生截断的时间间隔(从正常分布的变元lb,ub)。
注意----------Note----------
This function is a wrapper for the UNU.RAN class in R. Compared to rnorm, urnorm is faster, especially for larger sample sizes. However, in opposition to rnorm vector arguments are ignored, i.e. only the first entry is used.
这个函数是一个包装为与rnorm相比的UNU.RAN类R.,urnorm速度更快,特别是对于较大的样本量。然而,在反对rnorm的向量参数将被忽略,即只有第一个条目。
(作者)----------Author(s)----------
Josef Leydold and Wolfgang H\"ormann
<a href="mailto:unuran@statmath.wu.ac.at">unuran@statmath.wu.ac.at</a>.
参考文献----------References----------
Automatic Nonuniform Random Variate Generation. Springer-Verlag, Berlin Heidelberg
参见----------See Also----------
runif and .Random.seed about random number generation, unuran for the UNU.RAN class, and rnorm for the R built-in normal random variate generator.
runif和.Random.seed对随机数生成的,unuran的UNU.RAN类的,和rnorm为R内置在正常的随机变量发生器。
实例----------Examples----------
## Create a sample of size 1000[#创建一个大小为1000的样本]
x <- urnorm(n=1000)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|