Given
u = F(x) = \frac{1}{1 + e^{\frac{-(x-\mu)}{\beta}}},
we rearrange for x,
x = F^{-1}(u) = \mu - \beta \ln(1/u - 1),
with u \sim U(0, 1).
Both sampling from u and applying the inverse function and sampling from the logistic distribution yield similar results.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set.seed(42) | |
antiF <- function(u, mu, beta) {mu - beta * log(1/u - 1)} | |
n = 10000 | |
mu = 5 | |
beta = 2 | |
s1 = antiF(runif(n), mu, beta) | |
s2 = rlogis(n, mu, beta) |
Neato!
No comments:
Post a Comment