# NOT RUN {
# Calculations for the multivariate inverted beta with parameters:
# a = 7, l1 = 1, l2 = 3
# Vector of quantiles: c(2, 4)
dmvinvbeta(x = c(2, 4), parm1 = 7, parm2 = c(1, 3)) # Density
# Cumulative Probability using adaptive multivariate integral
pmvinvbeta(q = c(2, 4), parm1 = 7, parm2 = c(1, 3))
# }
# NOT RUN {
# Cumulative Probability using Monte Carlo method
pmvinvbeta(q = c(2, 4), parm1 = 7, parm2 = c(1, 3), algorithm = "MC")
# }
# NOT RUN {
# }
# NOT RUN {
# Equicoordinate quantile of cumulative probability 0.5
qmvinvbeta(p = 0.5, parm1 = 7, parm2 = c(1, 3))
# }
# NOT RUN {
# Random numbers generation with sample size 100
rmvinvbeta(n = 100, parm1 = 7, parm2 = c(1, 3))
smvinvbeta(q = c(2, 4), parm1 = 7, parm2 = c(1, 3)) # Survival function
# }
Run the code above in your browser using DataLab