search for: inda

Displaying 4 results from an estimated 4 matches for "inda".

Did you mean: ida
2013 Nov 20
1
Binomial GLM in Stata and R
Hello, I'm not a Stata user so I'm trying to reproduce Stata results that are given to me in R. I would like to use a GLM with a complementary log-log function. The stata code I have is: glm c IndA fia, family(binomial s) link(cloglog) offset(offset) The R code is: glmt <- glm(data=dataset, c ~ IndA + fia, offset = offset, family = binomial(link = cloglog)) Which yields different results from the Stata output. I think the difference is in the variable s that is included in the binomi...
2016 May 30
1
Samba4 support qmail and asterisk (Jules Houantonon)
Hello Jules. All you have to do is extend the Active Directory Schema with the attributes you need for your Qmail, and change the configuration in /var/qmail/control of all the ldap* files that are needed to connect to LDAP/AD. Regards. -- Indalecio Agudo Director Tecnico Modemn.A System, S.L. RedHat RHCSA #100-152-610 RedHat RHCT #605009255528337 Linux Reg. User: 52850 IEEE Computer Member #41386897 E-mail: inda at modemna.es E-mail: iagudo at codys.es http://www.modemna.es http://www.codys.es http://www.servicioslinux.es
2010 May 29
0
plotting density in same plot in loop iteration
...t;-[c(indx,indy),] std<-sd(S[,"f"]) t<-round(max(q[,"a"]),0) u<-round(min(q[,"a"]),0) colnames(v)<-c("a") D<-q[,"a"] d<-density(D) pdf('L') for (h in length(s[["a"]])) { for (i in length(S[["a"]])) { inda<-which(q[h,"a"]==q[h,"d"]) indb<-which(q[i,"a"]==q[i,"e"]) R<-(s[c(inda),"f"]+s[c(indb),"f"])/2 indh<-which(abs(q[,"b"]-R)<=(2*std)) indi<-which(abs(q[,"c"]-R)<=(2*std)) A<-q[indh,c("a&qu...
2010 May 20
1
sqldf: issues with natural joins
...e = 'a') > B <- data.frame(Tid = Tid[2:4], dfName = 'b') > C <- data.frame(Tid = Tid[1:3], dfName = 'c') # then use the sqldf library > library(sqldf) > sqldf() # to create indices on the Tid variable shared across data.frames > sqldf('create index indA on A(Tid)') > sqldf('create index indB on B(Tid)') > sqldf('create index indC on C(Tid)') # check to make sure everything is there > sqldf('select * from sqlite_master') # doing a natural join (implicitly on Tid) # does not give the expected joins > sqldf(&...