Displaying 4 results from an estimated 4 matches for "pepi".
Did you mean:
pep
2000 Feb 08
1
fix() changes character to factor (PR#415)
If x is a data.frame containing a column of mode character, this
column is changed to a factor after applying fix(x).
Example:
R> x_data.frame(a=1:3,b=letters[1:3],c=c("hansi","pepi","karli"))
R> x$c_as.character(x$c)
R> is.character(x$c)
[1] TRUE
R> is.factor(x$c)
[1] FALSE
R> fix(x)
## I change "karli" to "sepp"
R> x$c
[1] hansi pepi sepp
Levels: hansi pepi sepp
R> is.character(x$c)
[1] FALSE
R> is.factor(x$c)
[1]...
2009 Apr 18
8
DO NOT REPLY [Bug 6276] New: crtimes.patch does not preserve creation dates on Mac x86_64 only
...h-O universal binary with 4 architectures
rsync (for architecture ppc): Mach-O executable ppc
rsync (for architecture i386): Mach-O executable i386
rsync (for architecture ppc64): Mach-O 64-bit executable ppc64
rsync (for architecture x86_64): Mach-O 64-bit executable x86_64
-rwxr-xr-x 1 pepi staff 2535144 18 Apr 22:49 rsync
When created this way, rsync running on an intel Core2Duo based Mac will not
preserve creation date/time.
I've tested this with backupbouncer 0.1.3:
------------------ rsync3-maclemon-beta ------------------
This copier produced log output in:
/Volumes/D...
2012 Nov 21
1
Listing elements of a 4D array
Dear list,
I'm having trouble to see how my elements on a 4 dimensional array are
listed.
For example, I generated the following array:
junk.melt=melt(occ.data,id.var=c("Especie", "Site", "Rep", "Año"),
measure.var="Pres")
y=cast(junk.melt, Site ~ Rep ~ Especie ~ Año)
Now, I want to be able to look at how my species (Especie) are listed, in
1999 Nov 03
1
Dimnamenames (PR#257)
I've just started digging into Andreas's old report:
> a <- array(0,c(2,2,2));
> dimnames(a)<-list(hansi=1:2, pepi=c("a","b"), karli=3:4)
> dimnames(a[,,1]) # losing component names
[[1]]
[1] "1" "2"
[[2]]
[1] "a" "b"
Now, this would be fairly easily fixed (I think) which would also make
it compatible with S3. But what should one do about a[,1,1]...