[R] Control over character height, width, skew etc.?

2013-11-03 Thread Iakub Henschen
I would like to add characters to R plots but need separate control over height, width, skew, rotation etc. These parameters result from a statistical computation within R. Also I need to be able to control stroke and fill parameters independently. Finally, I need more than just ASCII characters, b

Re: [R] repeating values in an index two by two

2013-11-11 Thread Iakub Henschen
> n<-7 > rep(seq(1,n,2), each=4)+c(0,1,0,1) [1] 1 2 1 2 3 4 3 4 5 6 5 6 7 8 7 8 rep(), seq(), rbind(), apply() ... whatever: internally there will always be iteration via some loop :-) Ia. On Mon, Nov 11, 2013 at 11:16 AM, Carl Witthoft wrote: > Here's a rather extreme solution: > > foo<-re