-6ren">
gpt4 book ai didi

random - Julia,在 R 中复制 "rbinom()"的函数

转载 作者:行者123 更新时间:2023-12-03 16:01:13 25 4
gpt4 key购买 nike

我四处挖掘并用谷歌搜索,但没有找到一个例子。我确信 Julia 有一个强大的函数(在基数中?)以给定的概率生成随机二项式(伯努利?)“成功”。我找不到它或弄清楚如何在 Julia 中执行等效操作:

> rbinom(20,1,0.3)
[1] 1 1 1 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 0 0

谢谢。 J

最佳答案

您可以使用发行版和 rand为此功能。任何分发都可以传递给 rand .要复制您想要的内容:

julia> using Distributions

julia> p = Binomial(1, 0.3) # first arg is number of trials, second is probability of success
Binomial{Float64}(n=1, p=0.3)

julia> rand(p, 20)
20-element Array{Int64,1}:
0
1
1
0
1
0
0
1
0
1
1
1
0
0
1
0
1
0
0
1

关于random - Julia,在 R 中复制 "rbinom()"的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65922988/

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