Hello I ask and help to draw a lognormally distributed variable from a given mean (5.3) and 95 percentiles (11.3)
-
Login or Register
- Log in with
. di (11.3-5.3) / invnormal(.95) 3.647741
exp(mu + .5*s^2) and exp(mu + s*invnormal(.95))
mu = -2.03 and s = 2.72
loc mu = -2.03
loc s = 2.72
tw function y=normal((ln(x)-`mu')/`s'), yline(.95) xline(11.3) ra(.01 15) ylab(.95 1, angle(360)) xlab(0 11.3) plotreg(marg(zero)) yti("f(y)", orient(horiz)) xti("y")
Comment