search for: latsupri

Displaying 2 results from an estimated 2 matches for "latsupri".

2001 Jul 27
2
boxplot question
...group.) Here is a small example that produces the desired boxplots and labels them horizontally with "GO", "HO", "PA", "PO" as I want: attach(hominoid) #contains raw data groups<-c("GO", "HO", "PA", "PO") boxplot(latsupri~genus, main = "latsupri", horizontal=T, las=1, names=groups) This example produces the needed boxplot, but fails to put the "GO" anywhere on the plot attach(hominoid) groups<-"GO" # groups<-c("GO") doesn't do any better boxplot(lats...
2001 Feb 26
1
Difference between S-Plus & R 1.2.1
Sorry for the uninformative subject. The following piece of code gives different output in S-Plus (2K & 6) vs R 1.2.1 (Win) apply(apehum[,6:15], 2, function(x) which(is.na(x))) S-Plus results: > apply(apehum[,6:15], 2, function(x) which(is.na(x))) $latsupri: numeric(0) $medepico: numeric(0) $pdhtcapi: numeric(0) $mlhtcapi: numeric(0) $aphttroc: [1] 151 152 $mlhttroc: numeric(0) $antartbr: numeric(0) $olecrdep: [1] 151 $humlengt: [1] 105 $biepi: numeric(0) R 1.2.1 results: $latsupri numeric(0) $medepico numeric(0) $pdhtcapi numeric(0) $ml...