# Select among all possible continuous models.
model_select(precip, type = "continuous")
# View possible models to fit.
print(univariateML_models)
# Try out only gamma, Weibull, and exponential.
model_select(precip, c("gamma", "weibull", "exp"))
# Fit the discrete `corbet` data to all available discrete models
model_select(corbet, type = "discrete", return = "all")
Run the code above in your browser using DataLab