search for: unwtd

Displaying 7 results from an estimated 7 matches for "unwtd".

2018 Mar 06
4
Capturing warning within user-defined function
...and CIs p <- ((svyciprop(~grp, grp1, family=quasibinomial))[1]) # save warnings wrn1 <- warnings(p) ci_l <- (confint(svyciprop(~grp, grp1, family=quasibinomial), 'ci')[1]) ci_u <- (confint(svyciprop(~grp, grp1, family=quasibinomial), 'ci')[2]) ## sample counts n <- unwtd.count(~grp, grp1)[1] ## combine into table overall <- data.frame(n, p, ci_l, ci_u) colnames(overall) <- c("counts", "Group1", "LL", "UL") ## add any warnings ind <- length(wrn1) ind if (ind == 0) { msg <- "No warnings" } if (ind >...
2018 Mar 06
0
Capturing warning within user-defined function
...mily=quasibinomial))[1]) > > # save warnings > wrn1 <- warnings(p) > > ci_l <- (confint(svyciprop(~grp, grp1, family=quasibinomial), 'ci')[1]) > ci_u <- (confint(svyciprop(~grp, grp1, family=quasibinomial), 'ci')[2]) > > ## sample counts > n <- unwtd.count(~grp, grp1)[1] > > ## combine into table > overall <- data.frame(n, p, ci_l, ci_u) > colnames(overall) <- c("counts", "Group1", "LL", "UL") > > ## add any warnings > ind <- length(wrn1) > ind > > if (ind == 0) { ms...
2018 Mar 06
0
Capturing warning within user-defined function
...mily=quasibinomial))[1]) > > # save warnings > wrn1 <- warnings(p) > > ci_l <- (confint(svyciprop(~grp, grp1, family=quasibinomial), 'ci')[1]) > ci_u <- (confint(svyciprop(~grp, grp1, family=quasibinomial), 'ci')[2]) > > ## sample counts > n <- unwtd.count(~grp, grp1)[1] > > ## combine into table > overall <- data.frame(n, p, ci_l, ci_u) > colnames(overall) <- c("counts", "Group1", "LL", "UL") > > ## add any warnings > ind <- length(wrn1) > ind > > if (ind == 0) { ms...
2018 Mar 06
1
Capturing warning within user-defined function
...# save warnings > > wrn1 <- warnings(p) > > > > ci_l <- (confint(svyciprop(~grp, grp1, family=quasibinomial), 'ci')[1]) > > ci_u <- (confint(svyciprop(~grp, grp1, family=quasibinomial), 'ci')[2]) > > > > ## sample counts > > n <- unwtd.count(~grp, grp1)[1] > > > > ## combine into table > > overall <- data.frame(n, p, ci_l, ci_u) > > colnames(overall) <- c("counts", "Group1", "LL", "UL") > > > > ## add any warnings > > ind <- length(wrn1) &g...
2012 Sep 21
1
Exactly Replicating Stata's Survey Data Confidence Intervals in R
...stata x <- read.dta( "http://www.ats.ucla.edu/stat/stata/library/apiclus1.dta" ) dclus1<-svydesign(id=~dnum, fpc=~fpc, data=x) # mean matches exactly coef(svymean(~I(ell==0), dclus1)) # SE matches exactly SE(svymean(~I(ell==0), dclus1)) # design df matches exactly degf(dclus1) # unwtd count matches exactly unwtd.count( ~ell, dclus1) # wtd count matches exactly svytotal( ~!is.na(ell), dclus1) # number of clusters match exactly dclus1 # none of the confidence interval options match exactly # the standard confint() will certainly be wrong, # since stata gives an asymmetric con...
2020 Mar 26
0
[PATCH nbdkit 9/9] tests/old-plugins: Add plugin from nbdkit 1.18.2.
...YuM-qgr4IzdW*2<q>Wxu%<WV}9<`5Go{e52^cUFZ z<zu;?VK#cp7*1Dh^d-WcA{%|4^h1=(A(+{kjbreGg)UfGm0_U|lgxm}Ep*jFKWU+V z%|f3i?7<XMF0#;Hig1KxG1bY^ZJ~=P#HtJnJzFvZ9=FhQE%cKXI`!Es!cJ<JKC<Ll z=yJ@cuE0Xa#5T(?3w@AD#l71?N8&L{k%d0kq#{RI=twMPnPQ<kO{$`lTj(we-D9B_ zSm^UC^m8rrg%-MXJ+Q<=Ki|UNWTDe~UzV7KF1|{#s?`?yS0poFi-mrng?@*HKHNgz zXrW(hq2FhrkFd};S?HHo=$kF{uUhC^Ec8n)^z9b<NDIBoLLX(JKWm{|<Ntt#E>gTj zDs!3fK*j?Z4`e)$@j%7{84qMUknupq0~rrwJdp7~#smMKJn)h0tDkvVkK}nea$lZ{ zZPoTJEh~M%)4Drv7wcwv@=xX{N^g4f0|2f|72<EAn%>k~>2!J{!)c?eH}$-U(*{{@ z>S+_Fjj`U;qb5#2;`F9|Y~r**)|<N9#A#!!H...
2020 Mar 26
15
[PATCH nbdkit 0/9] Create libnbdkit.so
This creates libnbdkit.so as discussed in the following thread: https://www.redhat.com/archives/libguestfs/2020-March/thread.html#00203 test-delay-shutdown.sh fails for unclear reasons. This series starts by reverting "tests: Don't strand hung nbdkit processes" which is because several other tests fail randomly unless I revert this patch. I didn't investigate this yet so it