search for: condvars

Displaying 10 results from an estimated 10 matches for "condvars".

2013 Jul 04
2
Modificar una función de un paquete
Estimados miembros de la lista. Estoy trabajando con la función mosaic del paquete vcd. Cómo puedo hacer para ver el contenido fe la función y modificar algunos de sus argumentos? Muchas gracias, Manuel -- *Manuel Spínola, Ph.D.* Instituto Internacional en Conservación y Manejo de Vida Silvestre Universidad Nacional Apartado 1350-3000 Heredia COSTA RICA mspinola@una.ac.cr
2013 Jul 04
1
Modificar una función de un paquete
....na(condind)**], > collapse=" / "), "in", deparse(substitute(data)))) > ind <- c(condind, ind) > } > dat <- margin.table(dat, ind) > } > mosaic.default(dat, main = main, sub = sub, highlighting = highlighting, > condvars = if (is.null(condind)) NULL else > match(condnames, names(dimnames(dat))), ...) > } else { > m <- m[c(1, match(c("formula", "data", "subset", "na.action"), > names(m), 0))] > m[[1]] <- as.name("xtabs") > m$fo...
2013 Jul 04
0
Modificar una función de un paquete
...find", paste(condnames[is.na(condind)], collapse=" / "), "in", deparse(substitute(data)))) ind <- c(condind, ind) } dat <- margin.table(dat, ind) } mosaic.default(dat, main = main, sub = sub, highlighting = highlighting, condvars = if (is.null(condind)) NULL else match(condnames, names(dimnames(dat))), ...) } else { m <- m[c(1, match(c("formula", "data", "subset", "na.action"), names(m), 0))] m[[1]] <- as.name("xtabs") m$formula <- fo...
2011 Jan 20
2
adding text to y-axis per row of panels (lattice)
Dear all, Being a newbie to R, I've trawled through many old posts on this list looking for a solution to my problem, but unfortunately couldn't quite figure it out myself. I'd be very grateful if someone here on this list could perhaps help me out. I have a lattice plot with several panels and would like to add some text next to the y-axis on the right hand side of each row of
2013 Jul 06
0
Modificar una función de un paquete
...ot; / "), "in", deparse(substitute(data)))) > > ind <- c(condind, ind) > > } > > dat <- margin.table(dat, ind) > > } > > mosaic.default(dat, main = main, sub = sub, highlighting = > highlighting, > > condvars = if (is.null(condind)) NULL else > > match(condnames, names(dimnames(dat))), ...) > > } else { > > m <- m[c(1, match(c("formula", "data", "subset", "na.action"), > > names(m), 0))] > > m[[1]] <- as.name("xt...
2014 Mar 14
3
Sys::Virt integration into other event loops
Hi all, I’m trying to integrate Perl’s Sys::Virt into an already existing AnyEvent program. I’m accustomed to writing things like this: use EV; use AnyEvent; use AnyEvent::Handle; my $h = AnyEvent::Handle->new(fh => $fh, …); $h->on_read(sub { … }); EV::run; ## start the event loop I can add some code in the on_read() handler and every time the $fh has something to read, it will fire
2013 Nov 04
1
How to plot results of clmm()?
Dear list, I'd like to create a visual plot of a clmm() I've fitted using the 'ordinal' package in R. It's possible to do this with a glm() by using the 'effects' package. For example: library(effects) data(BEPS) mod <- lm(political.knowledge ~ age + gender + vote, data=BEPS) eff <- effect("age", mod, default.levels=100) plot(eff,
2003 Dec 18
0
[LLVMdev] About clock and wait instruction
...ng with sync operations makes sense). * If the library would impact high-level parallelism mechanisms like MPI, that should be thought about perhaps. * Being able to support languages like Java is important, but I think Java just exposes a subset of pthreads functionality (recursive locks and condvars). * Given native code generator support, it should be implementable on all reasonable targets. * Exposing an abstract-enough layer is important. We want to be able to eliminate extraneous synch operations from programs that don't need it. This, however, means that the meaning of the vari...
2014 Mar 14
0
Re: Sys::Virt integration into other event loops
On Fri, Mar 14, 2014 at 09:01:22AM -0600, Scott Wiersdorf wrote: > Hi all, > > I’m trying to integrate Perl’s Sys::Virt into an already existing AnyEvent program. > > I’m accustomed to writing things like this: > > use EV; > use AnyEvent; > use AnyEvent::Handle; > my $h = AnyEvent::Handle->new(fh => $fh, …); > $h->on_read(sub { … }); > > EV::run;
2012 Sep 18
8
Collecting entropy from device_attach() times.
Hi. I experimented a bit with collecting entropy from the time it takes for device_attach() to run (in CPU cycles). It seems that those times have enough variation that we can use it for entropy harvesting. It happens even before root is mounted, so pretty early. On the machine I'm testing it, which has minimal kernel plus NIC driver I see 75 device_attach() calls. I'm being very careful