Re: [R] Rconsole file fails to remember GUI settings, and script window text colour option is missing

2012-04-27 Thread geotheory
Hi there, its Windows 7 (32 bit) platform. Yes, I used R Studio when I started learning, but now prefer the simpler basic GUI. Maybe I'll have to go back to it, although that would seem like such a pointlessly ridiculous defeat by poor GUI design! -- View this message in context: http://r.78969

[R] Rconsole file fails to remember GUI settings, and script window text colour option is missing

2012-04-27 Thread geotheory
Am encountering two related problems since the 2.15 release. Apologies in advance for a mundane non code-related post, but you know how it is. I'm using the basic R GUI. 1: I use a black environment for no glare, so pre-version 2.15 I've had black backgrounds and white text. Since the 2.15 rele

[R] Defining a viewport scale in {Grid}

2012-02-16 Thread geotheory
Am just feeling my way into the grid library, and cannot figure out how to define the plot limits. 3/5 of the example polygons below plot in the default 0-1 range viewport. But when I try to redefine the viewport the polygons plot in the same places. I also get the same result without employing

Re: [R] Selecting elements from all items in a list

2012-02-14 Thread geotheory
Yes the lapply function sorted it out. Thanks for the advice. -- View this message in context: http://r.789695.n4.nabble.com/Selecting-elements-from-all-items-in-a-list-tp4387045p4387505.html Sent from the R help mailing list archive at Nabble.com. __

[R] Selecting elements from all items in a list

2012-02-14 Thread geotheory
Basic question (if you know the answer)... I am dealing with a list of commonly-formatted sub-lists, for example: l <- list("") l[[1]] <- c("A1","A2","A3") l[[2]] <- c("B1","B2","B3") l[[3]] <- c("C1","B2","B3") Lets say I need to extract every 2nd item (i.e. A2, B2, C2). [[]] cannot be used.