Skip to content
Advertisement

plot lognormal distribution with Arena Software Output

This might be a very niche Problem. I have a modified Dataset – based on the 4th downloadlink with 105572 elements – and want to know how I can model it in the best way. I had to use Arena Software from Rockwell Software. I got the following as a result for a distribution: “816 + LOGN(198, 439)” In the picture bellow on the left side you can see the fit. From the Documentation the Output should be: “Lognormal (mu, sigma): LOGN (LogMean, LogStd) or LOGNORMAL (LogMean, LogStd)”. However, I would like to reconstruct it in Python.

JavaScript

The results look like this

I have no idea how I can make them the same size or look nice. I can’t reale use the picture from Arena Software because i would like to plot multiple distributions into one picture. With a scipy.stats.fit I get somewhat better results. As in this post I tried following code:

here the picture

JavaScript

Advertisement

Answer

Solution:

The Output in Arena Software for the Lognormal distribution is in the form of (LogMean LogStd). In the docs there is actually a transformation to get the normal mean and std for easy replication of the distribution.

JavaScript

If you want to plot it with scipy.stats.lognorm:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement