当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 replicate()用法及代码示例


replicate()R 语言中的函数用于重复计算一个函数或表达式。它是会员applyR 基础包中的家庭。在本文中,我们将学习语法和实现replicate()在示例的帮助下发挥作用。

用法: replicate(n, expr, simplify)

参数:
n:表示必须计算表达式的次数
expr:表示表达
simplify:表示逻辑值。如果为 TRUE,则输出以向量或矩阵形式表示,否则以列表形式表示

范例1:


# Set the seed
set.seed(10)
  
# Generate random numbers with mean = 0 and sd = 1
x <- rnorm(5, mean = 0, sd = 1)
  
# Print
print(x)
  
# Evaluating it repeatedly
r <- replicate(n = 3, rnorm(5, 0, 1), simplify = FALSE )
  
# Print
print(r)

输出:

[1]  0.01874617 -0.18425254 -1.37133055 -0.59916772  0.29454513

[[1]]
[1]  0.3897943 -1.2080762 -0.3636760 -1.6266727 -0.2564784

[[2]]
[1]  1.1017795  0.7557815 -0.2382336  0.9874447  0.7413901

[[3]]
[1]  0.08934727 -0.95494386 -0.19515038  0.92552126  0.48297852

范例2:


# Output to be present as PNG file
png(file = "replicateGFG.png")
  
# Set the seed
set.seed(10)
  
# Replicate values and create histogram
hist(replicate(100, mean(rexp(10))))
  
# Saving the file
dev.off()

输出:

相关用法


注:本文由纯净天空筛选整理自utkarsh_kumar大神的英文原创作品 Repeatedly Evaluate an Expression in R Programming – replicate() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。