LogLogistic

Definition

The LogLogistic distribution is the probability distribution of a random variable whose logarithm has a logistic distribution. It is similar in shape to the log-normal distribution but has heavier tails.

It is used in survival analysis as a parametric model for events whose rate increases initially and decreases later, as, for example, mortality rate from cancer following diagnosis or treatment. It has also been used in hydrology to model stream flow and precipitation, in economics as a simple model of the distribution of wealth or income, and in networking to model the transmission times of data considering both the network and the software.

Examples

Let us sample a dataset from an Exponentiated Weibull distribution:

using SurvivalDistributions, Distributions, Random, Plots, StatsBase
Random.seed!(123)
D = LogLogistic(1,2)
sim = rand(D,1000);
1000-element Vector{Float64}:
      3.2213879475983482
      5.482495374503381
    181.1809587274734
      0.1513350789881265
      3.3383600599810705
      1.1166351027333585
      0.005984491696299018
    533.1251103021772
      5.207735855046766
      0.643129689639979
      ⋮
      0.044704414902296
 105713.22008852047
   1051.4092725659727
     60.323283971484265
      1.2075699047050688
    323.20258438979937
 150336.85725582816
     13.858089599981726
      0.10715580550638135

First, let's have a look at the hazard function:

plot(t -> hazard(D,t), ylabel = "Hazard", xlims = (0,10))
Example block output

Then, we can verify the coherence of our code by comparing the obtained sample and the true pdf:

histogram(sim, normalize=:pdf, bins = range(0, 5, length=30))
plot!(t -> pdf(D,t), ylabel = "Density", xlims = (0,5))
Example block output

We could also compare the empirical and theroetical cdfs:

ecdfsim = ecdf(sim)
plot(x -> ecdfsim(x), 0, 5, label = "ECDF", linecolor = "gray", linewidth=3)
plot!(t -> cdf(D,t), xlabel = "x", ylabel = "CDF vs. ECDF", xlims = (0,5))
Example block output