Displaying 6 results from an estimated 6 matches for "dtrans".
Did you mean:
trans
2007 Apr 24
1
dundi problem * 1.4.2
...rld
permit = pipsworld
qualify = yes
But for some reason dundi-lookups fail.
tsjonge*CLI> dundi lookup 29@pipsworld
DUNDi lookup returned no results.
DUNDi lookup completed in 3 ms
ETx-Frame Retry[No] -- OSeqno: 000 ISeqno: 000 Type: DPDISCOVER
(Command)
Flags: 00 STrans: 23682 DTrans: 00000 [145.100.55.14:4520]
VERSION : 1
DIRECT EID : 00:50:da:73:18:c6
CALLED NUMBER : 29
CALLED CONTEXT : pipsworld
TTL : 16
Tx-Frame Retry[No] -- OSeqno: 000 ISeqno: 000 Type: ENCRYPT (Command)
Flags: 00 STrans: 23682...
2006 Mar 16
1
DUNDi .... Halfway
...Linux 3 months ago. Back then I didn't get it even work one way though. For the love of god, does anyone have any ideas???
DUNDi Debugging Enabled
*CLI> iax2 debug
IAX2 Debugging Enabled
Rx-Frame Retry[No] -- OSeqno: 000 ISeqno: 000 Type: ENCRYPT (Command)
Flags: 00 STrans: 00582 DTrans: 00000 [216.187.142.204:4520]
ENTITY IDENT : 00:0e:0c:a1:92:4d
KEYCRC32 : 1265850539
ENCDATA : [IV 859b875e0af83a36f7aef655c7bc5341] 4 encrypted blocks
Tx-Frame Retry[No] -- OSeqno: 000 ISeqno: 001 Type: ENCREJ (Response)
Flags: 00 STrans: 26407 DTrans: 0058...
2010 Mar 09
0
DUNDI Sip authentication failure
...(macro-hangupcall, s, 11) exited non-zero on
'SIP/360-08dfe0a0' in macro 'hangupcall'
== Spawn extension (macro-hangupcall, s, 11) exited non-zero on
'SIP/360-08dfe0a0'
Rx-Frame Retry[No] -- OSeqno: 000 ISeqno: 000 Type: NULL (Command)
Flags: 00 STrans: 29219 DTrans: 00000 [192.168.199.21:4520] (Final)
Tx-Frame Retry[No] -- OSeqno: 000 ISeqno: 001 Type: ACK (Response)
Flags: 00 STrans: 08363 DTrans: 29219 [192.168.199.21:4520] (Final)
Tx-Frame Retry[No] -- OSeqno: 000 ISeqno: 000 Type: NULL (Command)
Flags: 00 STrans: 12520 DTrans: 0...
2008 Apr 25
3
Use of survreg.distributions
Dear R-user:
I am using survreg(Surv()) for fitting a Tobit model of left-censored longitudinal data. For logarithmic transformation of y data, I am trying use survreg.distributions in the following way:
tfit=survreg(Surv(y, y>=-5, type="left")~x + cluster(id), dist="gaussian", data=y.data, scale=0, weights=w)
my.gaussian<-survreg.distributions$gaussian
2012 Jan 26
1
3-parametric Weibull regression
..." value dist, analogous to the implemented weibull-dist like so:
survreg.distributions$weibull3p$name <- "weibull"
survreg.distributions$weibull3p$dist <- "extreme"
survreg.distributions$weibull3p$trans <- function(y, x0) log(y) + x0
survreg.distributions$weibull3p$dtrans <- function(y) 1/y
survreg.distributions$weibull3p$itrans <- function(x, x0) exp(x-x0)
I then get a failure by survregDtest(survreg.distributions$weibull3p) that x0 is missing (since the transformation function is expected to take only one argument).
Any ideas? Or is there maybe a package so...
2012 Jan 18
4
R-Help
I am trying to create a frequency distribution and I am a bit confused.
Here are the commands I have entered:
> data <- read.csv(file="40609_sortedfinal.csv",head=TRUE,sep=",")
> NumberOfActionsByStatus = data$STATUS
> NumberOfActionsByUser = data$ETS_LOGIN
> NumberOfBidOffer = data$BID_OFFER
> NumberOfActionsByUser.freq = table(NumberOfActionsByUser)
>