Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用R,并希望使用rweibull(n, shape, scale = 1).
R
rweibull(n, shape, scale = 1)
我有到达率(即 1/interarrival time),但我不知道如何在rweibull函数中使用它。
rweibull
scale 参数是您需要使用的参数,而 shape 参数是需要设置为 1 以创建指数分布的参数。比例参数为 1/rate:
interT = 8 plot( density(rexp(100, rate=1/interT)) ) with( density(rweibull(100, scale=interT, shape=1)), lines(x,y, col="red"))
(但如果您使用的是生存包,则需要注意参数是不同的。)