When searching for the best-fit distribution for my dataset, the result was the Exponentially Modified Normal distribution with the following parameters:
K=10.84, loc=154.35, scale=73.82
Scipy gives us a way to analyze the mean of the distribution by:
fitted_mean = scipy.stats.exponnorm.stats(K=10.84, loc=154.35, scale=73.82, moments='mean')
The resulting fitted_mean=984, which is the same mean as my dataset. However, I'm not sure what this is telling me. I thought the loc=154.35 is the mean of the distribution.
What are these two means? If I fitted the data with the best distribution, isn't the fitted_mean (154.35) the new and only mean?