Displaying 4 results from an estimated 4 matches for "glup".
Did you mean:
glue
2004 Jan 14
1
-vn doesn't list empty directories, -v does
...both instances, and the desired behavior is
to report the copy of the empty directory.
Consider the following tree:
drwxr-xr-x 4 jh jh 4096 Jan 14 15:50 .
drwxr-xr-x 2 jh jh 4096 Jan 14 15:45 ./baz
-rw-r--r-- 1 jh jh 0 Jan 14 15:45 ./baz/glup
drwxr-xr-x 3 jh jh 4096 Jan 14 15:50 ./foo
drwxr-xr-x 2 jh jh 4096 Jan 14 15:31 ./foo/bar
-rw-r--r-- 1 jh jh 0 Jan 14 15:44 ./foo/quuz
lrwxrwxrwx 1 jh jh 3 Jan 14 15:50 ./foo/wrt -> spl
rsync -aHSvn --delete foo/...
2002 May 27
1
nlme cross-over and fixed nested
...don't
see why it should be random, AND I want an estimate of the effect.
So, if the question is stupid, please help me out at least an tell my WHY.
# cross-over design
library(nlme)
NSubj<-20
# Placebo Phase
# Seq: 1 for "Placebo first phase", 2 for "Verum first phase"
glup<-data.frame(Patient=as.factor(1:NSubj),
Seq=as.factor(rep(c(1,2),NSubj/2)),
Treat=rep("Pla",NSubj),
Glu=rnorm(NSubj,30,4)
)
# Verum Phase
gluv<-data.frame(Patient=as.factor(1:NSubj),
Seq=as.factor(rep(c(1,2),NSubj/2)...
2002 Jan 22
4
make check : problems?
I'm the happy user of a new machine and
I'm trying to compile R-1.4.0 on it
(linux Suse 7.3 box).
After
./configure --with-gnome
I get the following configuration:
R is now configured for i686-pc-linux-gnu
Source directory: .
Installation directory: /usr/local
C compiler: gcc -mieee-fp -D__NO_MATH_INLINES -g -O2
C++ compiler: c++
2007 Oct 04
5
A rebel boxplot question
Dear R list members
I am trying to improve a boxplot with 2 data sets. I run somethinkg like
boxplot(data1 ~ month, add=F, col = "red", ...)
boxplot(data2 ~ month, add=T, col = "blue", ...)
The problem is that the data from February are missing for data2, so R
think that must take little more space between the data classes in data 2
and then both data gropus are not aligned.