[R] spplot and cex

2009-09-21 Thread Roberto Brunelli
Dear community, I'm using R 2.6.1 on a GNU/Linux Slackware box. I would like to obtain larger text when using spplot (from sp 0.9-43) using spplot(... cex=2) but I get no visible effect. Any help? Thanks, __ R-help@r-project.org mailing list https:/

[R] Regular expression substitution ...

2009-11-02 Thread Roberto Brunelli
I would like to replace all occurences of /pc with \% using something like sub("/pc", "\%", x) but I am unable to make the '\' pass through. Any hint? Thanks, Roberto __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listi

[R] How to create a floating bar plot

2012-05-31 Thread Roberto Brunelli
I would like to create a 'bar' plot with the following look -0 + -+-- * o oo where the positive and negat

Re: [R] How to create a floating bar plot

2012-05-31 Thread Roberto Brunelli
tion. You can browse the thumbnails until you find something that >> leads you in the right direction, like maybe: >> >> http://addictedtor.free.fr/graphiques/RGraphGallery.php?graph=136 >> >> Sarah >> >> On Thu, May 31, 2012 at 7:18 AM, R

[R] do.call and plotting functions ...

2008-11-19 Thread Roberto Brunelli
I'm trying to write a simple wrapper for plotting functions to make them print to postscript, something like ploteps <- function(file, plotFunction, ...) { args <- list(bquote(...)) # prepare postscript device do.call(plot, args) # close postscript device } I have inserted the bquote