Displaying 20 results from an estimated 27 matches for "deff".
Did you mean:
defa
2013 Mar 21
5
Help on indicator variables
I have two indicator variables ABS and DEFF. I want to create another
indicator variable which will take value 1 if either ABS=1 or DEFF=1.
Otherwise, it will take value 0. How can I make that?
[[alternative HTML version deleted]]
2009 May 06
1
Hmisc package: deff() command's formula for the design effect
Hello,
I have been using the Hmisc package's deff() command for some research with
clustered data. I noticed that the formula to calculate the design effect
seems a bit different. The formula for the DE is:
1 + rho*(B - 1)
In most resources I have seen the formula for B to simply be the average
number of observations in a cluster: n/k if n is th...
2008 Aug 26
2
svymeans question
I have the following code which produces the output below it
clus1 <- svydesign(ids = ~schid, data = lower_dat)
items <- as.formula(paste(" ~ ", paste(lset, collapse= "+")))
rr1 <- svymean(items, clus1, deff='replace', na.rm=TRUE)
> rr1
mean SE DEff
W525209 0.719748 0.015606 2.4932
W525223 0.508228 0.027570 6.2802
W525035 0.827202 0.014060 2.8561
W525131 0.805421 0.015425 3.1350
W525033 0.242982 0.020074 4.5239
W525163 0.904647 0.013905 4.6289
W525165 0.439981 0.020029...
2012 Feb 13
1
survey package svystat objects from predict()
...() method in the survey package ends up calling the wrong function to calculate the standard errors. From the survey package:
as.data.frame.svystat<-function(x,...){
rval<-data.frame(statistic=coef(x),SE=SE(x))
names(rval)[1]<-attr(x,"statistic")
if (!is.null(attr(x,"deff")))
rval<-cbind(rval,deff=deff(x))
rval
}
The relevant SE method seems to be:
SE.svrepstat<-function(object,...){
if (is.list(object)){
object<-object[[1]]
}
vv<-as.matrix(attr(object,"var"))
if (!is.null(dim(object)) && length(object)==length...
2013 Mar 05
0
Samba 4, dynamic DNS, Kerberos
...ol.name/NONE': update failed: rejected by secure
update (REFUSED)
04-Mar-2013 20:18:46.004 database: info: samba_dlz: cancelling
transaction on zone firefly.michael.mol.name
samba logging from server:
Kerberos: AS-REQ Administrator at FIREFLY.MICHAEL.MOL.NAME from
ipv6:2001:470:c5b9:beef:4eed:deff:fe93:63a0:43555 for
krbtgt/FIREFLY.MICHAEL.MOL.NAME at FIREFLY.MICHAEL.MOL.NAME
Kerberos: No preauth found, returning PREAUTH-REQUIRED --
Administrator at FIREFLY.MICHAEL.MOL.NAME
Kerberos: AS-REQ Administrator at FIREFLY.MICHAEL.MOL.NAME from
ipv6:2001:470:c5b9:beef:4eed:deff:fe93:63a0:41982 for
k...
2008 Aug 15
2
Design-consistent variance estimate
...e number of
individuals per cluster
### Create correlated data
set.seed(100)
x <- rnorm(10)
y <- rep(10,10)
z <- rep(x,y)
score <- rnorm(100) + z
mm <- data.frame(group = gl(10,10), score)
### Use svymean to get results
gg <- svydesign(ids = ~group, data = mm)
svymean(~score, gg, deff='replace', na.rm=TRUE)
### My code which replicates the formulae in the LaTeX code below
## Cluster totals
xx <- with(mm, tapply(score, group, sum, na.rm=TRUE))
## Mean of the total
ss <- mean(xx, na.rm=T)
## get total variance
k <- length(xx)
totvar <- sum((xx-ss)^2) * k/(k-1...
2010 Jun 21
1
[LLVMdev] Win32 COFF Support
...on() and WriteLE32() in
> WinCOFFObjectWriter::WriteFileHeader() ?
> Aaron
Thanks, missed that one. Nathan used write_uint32_le in WinCOFF.h, and
I guess accidentally used it in WinCOFFObjectWriter.cpp. I'll remove
the calls from WinCOFFObjectWriter.cpp now, and remove them (and the
decl+deff) from WinCOFF.h when it gets moved over to Support/COFF.h.
- Michael Spencer
2005 Apr 13
2
IMC
Hi,
I'm trying to setup IMC (idealx management console) to give our
windows admins some nice toy to play with, but I have problem to make it
work. I can log in after I authentificate as Administrator, but, I can't
modify any LDAP entries, as that fails with unsufficient privileges due
to the IMC trying to bind to LDAP as logged in user (Administrator),
instead of something like
2005 Apr 28
1
make installworld, permissions and labels
...ls on system binaries. Is there any way to stop
make installworld resetting all my customisation? At the moment
I have a set of scripts to set permissions on everything but that's
not exactly ideal.
Mark
--
PGP: http://www.darklogik.org/pub/pgp/pgp.txt
B776 43DC 8A5D EAF9 2126 9A67 A7DA 390F DEFF 9DD1
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 825 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-security/attachments/20050428/8ec7e3ac/attachment.bin
2008 Jan 25
3
function code
R-help,
Sorry for this question (I guess it has been addressed before but
I could not find it in the archives)
but how can I see a function code
when the following comes up:
> svymean
function (x, design, na.rm = FALSE, ...)
{
.svycheck(design)
UseMethod("svymean", design)
}
<environment: namespace:survey>
Thanks in advance
2009 Mar 11
1
CI from svyquantile in survey package
...3 obs. of 3 variables:
$ stype: Factor w/ 3 levels "E","H","M": 1 2 3
$ api99: num 615 593 611
$ se : num 37.9 69.5 37.7
- attr(*, "svyby")=List of 7
..$ margins : int 1
..$ nstats : num 1
..$ vars : int 1
..$ deffs : logi FALSE
..$ statistic: chr "svyquantile"
..$ variables: chr "api99"
..$ vartype : chr "se"
- attr(*, "call")= language svyby.default(~api99, ~stype, dclus1,
svyquantile, quantiles = 0.5, ci = TRUE)
R>
I do not...
2010 Jun 15
4
[LLVMdev] Win32 COFF Support
I have updated my patch based on Chris'es feedback. I removed the
dbgout_calls macro, but left others in place for now. If there are no
objections, I would like to commit this tomorrow evening (~7PM GMT-7). I
have compiled and tested it on MSVC, with Michaels testing code and it looks
good. Once this is committed, Michaels patch can be applied.
-Nathan
-------------- next part --------------
2010 Jun 21
0
[LLVMdev] Win32 COFF Support
...WinCOFFObjectWriter::WriteFileHeader() ?
> > Aaron
>
> Thanks, missed that one. Nathan used write_uint32_le in WinCOFF.h, and
> I guess accidentally used it in WinCOFFObjectWriter.cpp. I'll remove
> the calls from WinCOFFObjectWriter.cpp now, and remove them (and the
> decl+deff) from WinCOFF.h when it gets moved over to Support/COFF.h.
>
> - Michael Spencer
>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>...
2006 Aug 21
1
"vcov" error in svyby and svytable functions
Hi,
I'm trying to compute survey svytable statistic on subsets by using the
svyby function.
Here is the code:
b<-svyby(~V024+V751, by=~V025, design=strat2, svytable, round=TRUE)
The vars, V024, V751 and V025 are factors. The by var has 2 levels, and
hence there will be two subsets. strat2 is created by the svydesign function.
It's giving me the following error:
>
2001 Aug 05
2
Just out of interest whats this?
FIXME:pthread_rwlock_rdlock
FIXME:pthread_rwlock_unlock
what's this, what's causing it and what needs fixing (I'll give it a
look if it's needed) or is it just an old error that dosn't really need
fixing (I can run almost everything I want to and the all show this
error) just intersted
Rob
2001 Apr 16
0
Fw: samba issues
>
> Hello.
> Files deff gone . i loged as root in linux box right now. files physicaly
> missing. directories just empty.files in share root still there. should
you
> need any futher information or configuration details just let me know.
> regards.
> Alexander Moloksher
> ----- Original Message -----
> F...
2012 Dec 22
0
[Antispam]rev 990a43d44c73 breaks compilation for dovecot 2.1
...signature_log_transaction_begin':
signature-log.c:122: error: too many arguments to function 'dict_init'
Failed to compile signature-log.c (plugin)!
make[3]: *** [signature-log.plugin.o] Error 1
make[2]: *** [all] Error 2
make[1]: *** [src] Error 2
make: *** [all] Error 2
Reversing the deff the builing process ends with no error.
--
Simone Caruso
IT Consultant
+39 349 65 90 805
2013 Nov 23
0
Hmisc package 3.13-0
...r
<sarkarbayazid at gmail.com>
* Extended non-panel (regular) version of plsmo to handle matrix y
* Likewise for summaryRc
* Added xlim to bpplotM
* Added latexTherm function to create LaTeX picture environments to
add a series of thermometers to LaTeX text
* Fixed deff to handle the case where R^2 = 1. Thanks: Matthieu
Stigler <matthieu.stigler at gmail.com>
* Added new test file for wtd.mean, wtd.quantile
* New test aregImpute3.r for glm Poisson regression
* Improved describe.vector to format single unique values
* Took aware warning abou...
2013 Sep 12
15
large packet support in netfront driver and guest network throughput
...20.213.5001: Flags [.], seq 276592:305552, ack 1, win 229, options [nop,nop,TS val 65594025 ecr 65569225], length 28960
In the guest:
eth0 Link encap:Ethernet HWaddr CA:FD:DE:AB:E1:E4
inet addr:10.84.20.213 Bcast:10.84.20.255 Mask:255.255.255.0
inet6 addr: fe80::c8fd:deff:feab:e1e4/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
tcpdump -i eth0 -nnvv -s 1500 src 10.84.20.214
10:38:25.071418 IP (tos 0x0, ttl 64, id 15074, offset 0, flags [DF], proto TCP (6), length 1500)
10.84.20.214.51040 > 10.84.20.213.5001: Flags [.], seq 17400:18...
2011 Feb 16
1
NIC bonding - missing eth0?
...e: eth3
MII Status: up
Link Failure Count: 0
Permanent HW addr: 1c:c1:de:74:97:5f
Aggregator ID: 19
[root at invmhp01 ~]# ifconfig
bond0 Link encap:Ethernet HWaddr 1C:C1:DE:74:97:5C
inet addr:147.158.130.183 Bcast:147.158.131.255 Mask:255.255.252.0
inet6 addr: fe80::1ec1:deff:fe74:975c/64 Scope:Link
UP BROADCAST RUNNING MASTER MULTICAST MTU:1500 Metric:1
RX packets:64087 errors:0 dropped:0 overruns:0 frame:0
TX packets:18179 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:8293500 (7.9 MiB) T...