How do I calculate the inverse of the log normal cumulative distribution function in python? I'm trying to translate some functions from Excel that uses the function [LOGINV][1]
For example
LOGINV(0,005;2;0,5) yields 2,0382373
where 0,005
is the probability, 2
is the mean and 0,5
is the std.
Does scipy.stats
have a similar function that I may apply?