RE: [R] R 1.9.0, special characters in variable names.

2004-06-24 Thread Ingolfsson, Olafur
"Sixten Borg" <[EMAIL PROTECTED]> writes: When I use these as variable names in a data.frame, odd things happen: > data.frame(a=1, å=2, ä=3, ö=4) > a å ä X. > 1 1 2 3 4 I your variables only include numbers (or only characters), this works XX <- cbind(a=1, å=2, ä=3, ö=4, æ=5, ø=6) > XX

RE: [R] Tick marks in xyplot

2004-06-24 Thread Ingolfsson, Olafur
Thank you for the tips, it is also good to know that the packages are getting even better. I however solved it this way: lset(col.whitebg()) x.data <- rnorm(16,20,7);y.data <- rnorm(16,.55,.25); z.data <- sample(1:4,16,replace=T) xyplot(y.data~x.data|z.data, layout=c(2,2),xlim=c(4,39),ylim=c(-

[R] Tick marks in xyplot

2004-06-23 Thread Ingolfsson, Olafur
Dear R group I am making multiple xyplot, and would like to have tick marks on bottom and left in EACH panel, but only tick labels at the bottom and left of the whole graph. I have browsed the internet, as well as the help page without success. If anyone could help me find the path to the solutio