Displaying 2 results from an estimated 2 matches for "s1b".
Did you mean:
1b
2006 Mar 13
4
priorityjumping=no
...ver (1.2.4) and they act like they're in a hunt-group
i.e. try the first, if busy jump to the next etc.
in my extensions.conf I had something like
[inbound-trunk]
exten => 441234123456,1,Dial(SIP/s1a,20,r)
exten => 441234123456,102,Dial(SIP/s2a,20,r)
exten => 441234123456,203,Dial(SIP/s1b,20,r)
exten => 441234123456,304,Dial(SIP/s2a,20,r)
i.e. try the first, if busy try the next etc.
It seemed to consistently fail.
in [globals]
priorityjumping=no
was set, which came from the samples (i.e. make samples when installing
Asterisk).
I changed that to yes (i.e. priorityjumping=yes...
2009 Feb 12
3
proposed simulate.glm method
...0
n <- 10
y <- rbinom(length(x),prob=plogis((x-5)/2),size=n)
y2 <- c("a","b")[1+rbinom(length(x),prob=plogis((x-5)/2),size=1)]
mod1 <- glm(cbind(y,n-y) ~ x,family=binomial)
mod2 <- glm(factor(y2) ~ x,family=binomial)
S1 <- simulate(mod1, nsim = 4)
S1B <- simulate(mod2, nsim = 4)
## repeat the simulation:
.Random.seed <- attr(S1, "seed")
identical(S1, simulate(mod1, nsim = 4))
S2 <- simulate(mod1, nsim = 200, seed = 101)
rowMeans(S2)/10 # after correcting for binomial sample size, should be
about
fitted(mod1)
pl...