if (FALSE) {
p1 <- c(0.25, 0.5, 0.75)
v1 <- c(0.5, 0.55, 0.6)
v2 <- c(0.22, 0.3, 0.35)
v3 <- c(0.11, 0.15, 0.2)
myfit1 <- fitdist(v1, p1, 0, 1)
myfit2 <- fitdist(v2, p1, 0, 1)
myfit3 <- fitdist(v3, p1, 0, 1)
d <- fitDirichlet(myfit1, myfit2, myfit3,
categories = c("A","B","C"),
n.fitted = "opt")
# Note that this will also work:
d <- fitDirichlet(list(myfit1, myfit2, myfit3),
categories = c("A","B","C"),
n.fitted = "opt")
}
Run the code above in your browser using DataLab