gpt4 book ai didi

r - 在 R 中本地(而不是全局)设置种子

转载 作者:行者123 更新时间:2023-12-03 00:11:42 28 4
gpt4 key购买 nike

我只想在 R 中本地设置种子(在函数内部),但似乎 R 不仅在本地设置种子,而且在全局设置种子。这是我正在尝试(不)做的事情的一个简单示例。

myfunction <- function () {
set.seed(2)
}

# now, whenever I run the two commands below I'll get the same answer
myfunction()
runif(1)

所以,我的问题是:为什么 R 在全局设置种子,而不仅仅是在我的函数内部?我怎样才能让 R 仅在我的函数内设置种子?

最佳答案

这样的事情对我来说是这样的:

myfunction <- function () {
old <- .Random.seed
set.seed(2)
res <- runif(1)
.Random.seed <<- old
res
}

或者也许更优雅:

myfunction <- function () {
old <- .Random.seed
on.exit( { .Random.seed <<- old } )
set.seed(2)
runif(1)
}

例如:

> myfunction()
[1] 0.1848823
> runif(1)
[1] 0.3472722
> myfunction()
[1] 0.1848823
> runif(1)
[1] 0.4887732

关于r - 在 R 中本地(而不是全局)设置种子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14324096/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com