from preliz import LogLogistic, style
style.use('preliz-doc')
alphas = [1, 1, 2]
betas = [4, 8, 8]
for alpha, beta in zip(alphas, betas):
    LogLogistic(alpha,beta).plot_pdf(support=(0, 6))