Displaying 7 results from an estimated 7 matches for "sbj".
Did you mean:
obj
2013 Feb 15
3
lattice 3x3 plot: force common y-limits accross rows and align x-axes
...rame
df.irisk <- subset(df,risk==irisk)
# order subjects by total count; store levels of subjectx variables
# for later re-use in panel labels
df.irisk$subjectx <- df.irisk$subject[,drop=TRUE]
df.irisk$subjectx <- reorder(df.irisk$subjectx,df.irisk$count,sum)
assign(paste('sbjx.',irisk,sep=''),levels(df.irisk$subjectx))
# create dotplot and store it in oltc.{irisk} variable
oltc.irisk <- dotplot(subjectx~count|treatment,data=df.irisk,
layout=c(3,1),type=c('p','h'),
xlim=c(-1,16),origin=0,...
2011 Sep 20
2
Sieve: Vacation, handle and variable
...uot;, "vhandle"];
if string :is "${vacation}" "" {
return;
}
# ensure we have a handle
if string :is "${vhandle}" "" {
set "vhandle" "${vacation}";
}
if header :matches "subject" "*" {
set "sbj" "Out of office [was: ${1}]";
vacation :addresses [...]
:from "..." :days 7 :handle "${vhandle}"
:subject "${sbj}" "${vacation}";
}
-------------------------
-------------- next part --------------
A non-text at...
2011 Jan 12
1
graphics: 3D regression plane
...ot;m")# sex
d1<-as.vector(by(time,factor(id),min))
t0<-as.Date(d1,origin=as.Date("1970-01-01"));t0
A<-data.frame(id=c("1","2","3"),t=t0)
B<-data.frame(id=id,tempo=time)
C<-merge(A,B);C
rd<-as.vector(C$tempo-C$t);rd #time centered on sbj specific first
occurrence
mod<-lm(y~rd*k)
newax<- expand.grid(
days = giorni<-seq(min(rd),max(rd), length=100),
expl= esplic<- seq(min(k), max(k), length=100)
)
fit <- predict(mod,data.frame(rd=giorni,k=esplic))
graph <- persp(x=giorni, y=esplic,fit,
expand=0.5, tic...
2016 Jan 26
0
[ANNOUNCE] xkeyboard-config 2.17
Andres Gomez (1):
Added sbj keymap for Jolla phone
Benno Schulenberg (1):
Adding the option to make Caps Lock act as a Menu key.
Daniel Radetsky (1):
add altwin:prtsc_rwin
Peter Hutterer (2):
Add br(thinkpad) to the xml files
symbols/group: re-enable grp:ctrls_toggle
Roland Kaufmann (1):
Make...
2001 Aug 27
3
Netscape
Is it possible to install and run Netscape whitout having access to a
native windows.
--
Best regard,
Svend Bjerrum Jensen
http://www.sbj.esenet.dk
2006 Feb 10
1
mcmcsamp shortening variable names; how can i turn this feature off?
I have written a function called mcsamp() that is a wrapper that runs
mcmcsamp() and automatically monitors convergence and structures the
inferences into vectors and arrays as appropriate.
But I have run into a very little problem, which is that mcmcsamp()
shortens the variable names. For example:
> set.seed (1)
> group <- rep (1:5,10)
> a <- rnorm (5,-3,3)
> y <-
2000 Sep 13
1
my vorbis comments
Ok I just finished writing a Vorbis encoder/decoder, and here are some
of my comments (I'm sure some of these are well known, but here they
are anyway - sorry this is long):
1. vorbis_info:
a. Accessing the pre-computed info structs through pointers to
static data is messy IMO. I should be able to vorbis_info_init
(or similar) an info struct to be exactly the same as info_A, for