Re: [R] [FORGED] Suppress horizontal mean line in beanplot()

2018-02-13 Thread Paul Murrell
= InsectSprays) # How to remove the dashed horizonal line? -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/~paul/ __

Re: [R] Identify does sort the locations

2018-02-15 Thread Paul Murrell
iling list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University o

Re: [R] Identify does sort the locations

2018-02-15 Thread Paul Murrell
, Thanks for your answer. I am wondering if in the previous versions, let's say 2.1x, the data were in the selection order... Let me know if there a R fonction taht I can code. Do you think I should use locator function and match points on my own? Best, Samuel -- Dr Paul Murrell Departme

Re: [R] [FORGED] Extracting specified pages from a lattice ("trellis") object.

2018-04-23 Thread Paul Murrell
ons, but not in others, and since I cannot understand what it actually does, I cannot figure out why. E.g. in my toy example "xxx[5:8]" seems to give me what I want, but in the context of my real application a similar construction does not work. Thanks for any insight. cheers, Ro

Re: [R] [FORGED] Extracting specified pages from a lattice ("trellis") object.

2018-04-26 Thread Paul Murrell
Hi Does this not do what you want ... ? allpages <- dotplot(variety ~ yield | year * site, data=barley, layout=c(2,2)) page2 <- allpages[1:2, 3:4] print(page2) Paul On 24/04/18 17:51, Rolf Turner wrote: On 24/04/18 15:17, Paul Murrell wrote: Hi I think the subs

Re: [R] [FORGED] Re: draw borders of bars inside of the rectangles in a barplot

2018-05-22 Thread Paul Murrell
tion: Is there a way to draw the border inside of the bars instead of surrounding the bars? (similar to border-drawing options in graphics software, like photoshop or inkscape). Here some example code: x <- matrix(c(1:10), 2,5) par(lwd = 5) barplot(x, beside=T, border=rep(c(NA, 'black'),5), space=c(0.08,1),

Re: [R] [FORGED] Re: drc, ggplot2, and gridExtra

2018-05-22 Thread Paul Murrell
see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckla

Re: [R] [FORGED] How to alpha entire plot?

2018-06-04 Thread Paul Murrell
___ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-containe

Re: [R] HLS and HSV in package colorspace [not whitepoint related]

2018-06-24 Thread Paul Murrell
non-commutative triangle: as( as( RGB(0.1,0.5,0.9), 'sRGB' ), 'HLS' )     H L S [1,] 201.7339 0.6519387 0.8698137 as( RGB(0.1,0.5,0.9), 'HLS' )    H   L   S [1,] 210 0.5 0.8 Note that 201.7339 0.6519387 0.8698137 != 210 0.5 0.8

Re: [R] [FORGED] difference metric info of same font on different device

2017-04-09 Thread Paul Murrell
sans") text(1, 0.25, expression(CO[2]-FZSong), family = "fzsong") text(1, 0.5, expression(CO[2]-Song), family = "song") text(1, 0.75, expression(CO[2]-Serif), family = "serif") dev.off() __ R

Re: [R] [FORGED] Re: Example of the use of the "crt" graphical parameter?

2017-05-01 Thread Paul Murrell
___ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible co

Re: [R] [FORGED] creating a color gradient in geom_ribbon

2017-05-11 Thread Paul Murrell
__ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Stati

Re: [R] [FORGED] How to create my own grDevices using java

2017-06-01 Thread Paul Murrell
nd provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/~paul/ _

Re: [R] [FORGED] Re: par(mfrow) for heatmap plots

2017-07-23 Thread Paul Murrell
or ggplot2 with grid graphics to plot multiple heatmaps. https://stackoverflow.com/questions/15114347/to-display-two-heatmaps-in-same-pdf-side-by-side-in-r -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85

Re: [R] [FORGED] Re: axis() after image.plot() does not work except if points() is inserted between

2017-07-27 Thread Paul Murrell
parts of the help page, I see that there is a 'graphics.reset' argument which you can set to TRUE in such a case: image.plot(D, col=rev(heat.colors(128)),bty="n", xlab="Lines", ylab="Columns", cex.lab = 0.5, zlim= range(D, na.rm=TRUE), graphics.reset = TRUE, # <<

Re: [R] [FORGED] can't print ggplot with Chinese characters to pdf files

2017-10-12 Thread Paul Murrell
lot_chinese.pdf", m2) [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guid

Re: [R] [FORGED] Re: Can I increase the size of an asterisk in plotmath()?

2016-06-30 Thread Paul Murrell
Well, it didn't look nice on my laptop. The asterisk was nearly invisible. cheers, Rolf __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide h

Re: [R] [FORGED] Lattice barchart legend with panel.barchart

2016-07-27 Thread Paul Murrell
legend. Is there any easy way to retain these blocks with panel.barchart? -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/~paul/ ___

Re: [R] [FORGED] Plotting in LaTeX with ggplot2 in R and using tikzdevice

2016-08-03 Thread Paul Murrell
the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.

Re: [R] [FORGED] Rotating points, preferably in grid

2016-08-24 Thread Paul Murrell
sting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/~paul/ ___

Re: [R] help for lay person assisting R user with disability

2015-06-18 Thread Paul Murrell
sting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/

Re: [R] Resizing a graph with a legend in the outer margin - wish for functionality like mtext()

2015-03-25 Thread Paul Murrell
r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The Unive

Re: [R] [FORGED] Adding % sign to ticks in persp()

2018-08-05 Thread Paul Murrell
ype = "detailed") [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-gu

Re: [R] [FORGED] Re: Display time of PDF plots

2018-09-03 Thread Paul Murrell
Hi Another option is to just rasterize the points (but leave the rest of the plot vector). See ... https://www.stat.auckland.ac.nz/~paul/Reports/rasterize/rasterize.html Paul On 04/09/18 06:20, Bert Gunter wrote: 1. Plot a random sample of the points (e.g. of rows of matrix/dataframe conta

Re: [R] [FORGED] Re: getting 21 very different colours

2018-09-11 Thread Paul Murrell
e, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019

Re: [R] [FORGED] Re: Change the position of label when using R package eulerr

2018-09-16 Thread Paul Murrell
/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. David Winsemius Alameda, CA, USA 'Any technology distinguishable from magic is insufficiently advanced.'

Re: [R] [FORGED] grid.grab(): strange behavior of "wrap" argument when working with lattice output

2018-10-30 Thread Paul Murrell
p, ...) :         one of more grobs overwritten (grab WILL not be faithful; try 'wrap = TRUE') -- which is strange, given that I specified wrap = TRUE. I proceed by running grid.draw(myGrob). According to Paul Murrell (R Graphics, 2nd ed., page 239), using grid.grab(wrap = TRUE) is "

Re: [R] [FORGED] Re: Line with linearly changing thickness – installation issues

2018-11-11 Thread Paul Murrell
advance! Yours, Ferri Gesendet: Sonntag, 11. November 2018 um 15:38 Uhr Von: "Peter Dalgaard" An: "Ferri Leberl" Cc: r-help@r-project.org Betreff: Re: [R] Line with linearly changing thickness Hmm... I don't recall whether this has been packaged up, but Paul Murrell tal

Re: [R] Interplay rnaturalearth, vwline

2018-11-13 Thread Paul Murrell
) grid.vwline(c(0,1),c(1,0),c(1/1000,1/1000)) #The vwlines miss the central dot; (1,1) is outside the plot __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide h

Re: [R] [FORGED] R cairo_pdf function does not respect plotting boundaries

2019-03-04 Thread Paul Murrell
L version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, m

Re: [R] [FORGED] Re: Quantile Density Contours

2019-03-27 Thread Paul Murrell
__ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of

Re: [R] Making my own graphics device

2014-08-17 Thread Paul Murrell
guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http:/

Re: [R] par("plt") behaving inconsistely? bug?

2014-10-08 Thread Paul Murrell
regory (Greg) L. Snow Ph.D. 538...@gmail.com __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, rep

Re: [R] Ternary Plots Do Not Display Ellipses in PDF

2014-10-20 Thread Paul Murrell
What am I not seeing here that causes the different outputs? Rich __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minim

Re: [R] Using grid.layout inside grid.layout with grid package: naming of the viewports affects plotting

2014-11-27 Thread Paul Murrell
plot(main="D") seekViewport("C") stackedplot(main="C") seekViewport("B") stackedplot(main="B") seekViewport("A") stackedplot(main="A") I tried with different names and found out that if I plot in reversed alphabetical order everyt

Re: [R] [FORGED] Re: plotting over a raster image with control over location and orientation

2015-08-24 Thread Paul Murrell
its = "npc", name="vp2") pushViewport(vp2) #data with a different scale xs<-seq(0.01,0.1,0.01)ys<-xs^2 #points(xs,ys,type='b',col='red',newpage=FALSE) plot(xs,ys,type='b',col='red') #fills the whole screen instead of just the intende

Re: [R] [FORGED] How to remove the grid around the plot(ca(...)) function?

2015-10-08 Thread Paul Murrell
ailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p

Re: [R] Fit a smooth closed shape through 4 points

2016-03-21 Thread Paul Murrell
___ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murr

Re: [R] Limit the y-axis line with ggplot2 (not the axis itself, but the line used at the left of the graph) [SOLVED]

2016-10-25 Thread Paul Murrell
.1), linetype=2)+ # This part is just to make it more nice theme(panel.background = element_rect(fill = 'white'), panel.grid.major = element_blank(), panel.grid.minor = element_blank(), plot.margin = unit(c(0.5, 1, 0.5, 0.5), "cm"), axis.text.x=eleme

Re: [R] [FORGED] Re: lattice: control panel extent on device

2016-10-25 Thread Paul Murrell
info/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...

Re: [R] [FORGED] Re: lattice: control panel extent on device

2016-10-25 Thread Paul Murrell
t("xy_p.panel.1.1.off.vp") # Draw proper left axis labels grid.text(seq(100, 200, 20), x=unit(0, "npc") - unit(1, "lines"), y=unit(seq(100, 200, 20), "native"), just="right", gp=gpar(cex=.8)) upViewport(0) Paul On 26/10/16 10:5

Re: [R] [FORGED] Re: [FORGED] lattice: control panel extent on device

2016-10-26 Thread Paul Murrell
ix <- LETTERS[n] print(x[[n]], newpage=FALSE, prefix=prefix) downViewport(paste0(prefix,".panel.1.1.off.vp")) upViewport(0) } #n-loop } } d <- dim(volcano) xy <- data.frame( x = 1:d[1], y1 = volcano[,30], y2 = sqrt(volcano[,7])) bottom <- levelplot(volcano, main = 'boom', y

Re: [R] [FORGED] How to remove box in Venn plots (Vennerable package, uses grid) - similar to bty="n" in standard plots

2016-11-13 Thread Paul Murrell
_ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department o

Re: [R] [FORGED] Re: [FORGED] How to remove box in Venn plots (Vennerable package, uses grid) - similar to bty="n" in standard plots

2016-11-14 Thread Paul Murrell
d with bty="n", but the method for plotting a "VennDrawing" structure uses the grid package and I'm lost there at the moment. Thank you for your help again, grid.ls() etc is a very cool and flexible approach Jose

Re: [R] [FORGED] help with gradient boxplot

2016-12-06 Thread Paul Murrell
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Departmen

Re: [R] [FORGED] help with gradient boxplot

2016-12-08 Thread Paul Murrell
data. Any other thoughts? Thanks. Ace On Tuesday, December 6, 2016 7:43 PM, Paul Murrell wrote: Hi 'gridSVG' might be one way to get this. For example ... library(lattice) # Draw boxplot (with a package that sits on top of 'grid') bwplot(voice.part ~ height, data=sin

Re: [R] [FORGED] help with gradient boxplot

2016-12-11 Thread Paul Murrell
re out that boxes in boxplot are called "bwplot.box.polygon". If I am trying to make a gradient filling for barplot of other plots, how would I define grobs? Thanks!! Ace On Thursday, December 8, 2016 5:24 PM, Paul Murrell wrote: Hi You could try ... grid.export(..., strict=FAL

Re: [R] [FORGED] Re: single strip for the same group in dotplot lattice

2017-02-23 Thread Paul Murrell
;", ""))), key = list( space = "top", columns = 3, text = list(c("Blank", "Negative", "Positive"), col="black"), rectangles = list(col=c("grey", "green", "red")) ) )

Re: [R] [FORGED] display UTF8 characters in pdf

2017-03-12 Thread Paul Murrell
answer can be extracted from a given body of data. ~ John Tukey [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/

Re: [R] [FORGED] Can fallback font be specified?

2017-03-26 Thread Paul Murrell
t;LC_COLLATE=Chinese (Simplified)_China.936;LC_CTYPE=Chinese (Simplified)_China.936;LC_MONETARY=Chinese (Simplified)_China.936;LC_NUMERIC=C;LC_TIME=Chinese (Simplified)_China.936" __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://

Re: [R] TeachingDemos question: my.symbols() alignment problems in complicated layout

2008-07-20 Thread Paul Murrell
Hi [EMAIL PROTECTED] wrote: > Hello, > > After usefull suggestions by Paul Murrell, i have been trying to use > my.symbols to plot arrows of varying angles on my plot in order to create > a time series of wind direction... however,i have been unable to figure > out how the all

Re: [R] grid layout scaling viewport width based solely on height

2008-08-06 Thread Paul Murrell
) > for(i in seq(0, 1, length.out = 10)) { > pushViewport(viewport(y = i, width = unit(1, 'snpc'), > height = unit(1, 'snpc'))) > grid.rect(gp = gpar(col = 3)) > popViewport() >

Re: [R] Are there any guis out there, which will allow editing of the graph?

2008-08-06 Thread Paul Murrell
> R-help@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrel

Re: [R] gridBase and new.page() / grid.newpage()

2008-08-10 Thread Paul Murrell
t; myplot() > > pdf() > myplot() > myplot() > dev.off() > > __ > R-help@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html

Re: [R] grid layout scaling viewport width based solely on height

2008-08-10 Thread Paul Murrell
Hi Peter Cowan wrote: > Paul, > > On Wed, Aug 6, 2008 at 1:40 PM, Paul Murrell <[EMAIL PROTECTED]> wrote: >>> I'm trying to write a function that produces a main plotting region >>> with several square plots along the right side. Ideally the size of >

Re: [R] gridBase and new.page() / grid.newpage()

2008-08-10 Thread Paul Murrell
subplot() > upViewport() >} >pushViewport(viewport(xscale = c(0, 1), layout.pos.col = 1)) >grid.rect(gp=gpar(fill="grey")) >grid.points() >upViewport() >upViewport() > } > > myplot(Aplot) > myplot(Aplot) &g

Re: [R] separate maps in one figure

2008-08-12 Thread Paul Murrell
ep(0, 4)) map("world2Hires", "USA:Alaska") par(mar=rep(0, 4)) map("state") par(mar=rep(0, 4)) map("world2Hires", "Hawaii") ... it would be easier to play with the placement of the three plot regions just using par(fig), but the problems caused b

Re: [R] Making use of names of viewports (grid)

2008-08-17 Thread Paul Murrell
; Reading through 'R Graphics' (the blue-toned book), I see there's such > a thing as vpList which I could make while I'm in that for loop, > but I don't see how I could do something like vpL <- c(vpL, cube.k) > sort of thing that I could do with a vector. It&

Re: [R] Using system fonts in MacOS

2009-08-09 Thread Paul Murrell
posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.a

Re: [R] Using bold font with bquote

2009-08-12 Thread Paul Murrell
rg/posting-guide.html and provide commented, minimal, self-contained, reproducible code. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and

Re: [R] Plotting sigma symbol with unicode and turning into pdf

2009-08-13 Thread Paul Murrell
ntpaths="/usr/share/texmf/fonts/type1/public/pl/") The other difference in this example is the extra call to embedFonts() at the end. This is necessary when using a font that your PDF viewer is unlikely to know about. This step makes the special font part of the PDF file, so the result

Re: [R] help simplifying complex graphic arguments to a function

2009-08-19 Thread Paul Murrell
of text labels ref.col="grey80", #-- color for ref lines ref.grid=TRUE, #-- to draw ref lines or not neg.col="white", #-- fill color for negative cell value frame.col="black", #-- color of frame around cell frame.lwd="0.5"#-- line width of frame arou

Re: [R] Mix font families in a single label?

2009-08-19 Thread Paul Murrell
account to compute the string width, and that doesn't seem to happen. Is there an easier way that does the calculations automatically? Any help is much appreciated. Regards, Marc -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Au

Re: [R] Computer Modern Fonts in R graphic

2009-08-30 Thread Paul Murrell
r system (e.g., http://www.ctan.org/tex-archive/fonts/ps-type1/cm-lgc/INSTALL) but you would then need to adjust the paths that you specify in the call to Type1Font(). You could then add the calls to Type1Font() and pdfFonts() to your .Rprofile so that this font is defined every time you start an R session (see ?S

Re: [R] eps file with embedded font

2009-09-08 Thread Paul Murrell
half of Simone Gabriellini) ---- E-Mail: (Ted Harding) Fax-to-email: +44 (0)870 094 0861 Date: 06-Sep-09 Time: 20:45:18 -- XFMail -- _

Re: [R] eps file with embedded font

2009-09-10 Thread Paul Murrell
ert Herrmann, which I shall send you privately since it may be of interest, along with the PS filoe I got after implementing Tadziu Hoffmann. Meanwhile, those who are interested by the issues arising in this thread, raised by Simone Gabbriellini, may find the above useful. Ted. On 08-Sep-09 23:51:27, Paul

Re: [R] Flattening Graphics

2010-02-11 Thread Paul Murrell
roject.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.a

Re: [R] igraph

2010-02-16 Thread Paul Murrell
Thanks in Advance for your Help. Sincerly. Gabriela Prasad P.D. Sorry for my not at all perfect english. I am from a Spanish Country. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http

Re: [R] Cropped graph using lattice

2010-03-17 Thread Paul Murrell
panel.text(1, 0, label="resin", pos=4, cex=1.3) trellis.unfocus() __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commen

Re: [R] symbols duplicated in plot output

2009-06-30 Thread Paul Murrell
ined, reproducible code. [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented,

Re: [R] symbols duplicated in plot output

2009-07-02 Thread Paul Murrell
Hi There's now a fix in the development version of R. Paul Paul Murrell wrote: Hi It is indeed a bug. Should have a fix soon. Thanks for the report! Paul baptiste auguie wrote: Thanks for the info. It does look like a bug to me, but it's always best to try and identify

Re: [R] Computer Modern

2009-07-02 Thread Paul Murrell
Hi Also see http://www.stat.auckland.ac.nz/~paul/R/CM/CMR.html Paul (Ted Harding) wrote: On 02-Jul-09 09:06:44, Mr Derik wrote: I am trying to use computer modern fonts in postscript files for a latex document. Ultimately I want to automate this through sweave. I've read the documentation an

Re: [R] subscripted assignment of grid units

2009-07-07 Thread Paul Murrell
estUnit2, testUnits[4:5]) ... though I can imagine that getting pretty tedious in more complex cases. Paul pbarros wrote: Hi, I want to do subscripted assignment of grid units, but I cannot find a straightforward way of doing it (and I have searched all forums and places I could think about, i

Re: [R] Tex fonts in R plots

2009-07-08 Thread Paul Murrell
nd provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/~paul/ __

Re: [R] Computer Modern

2009-07-23 Thread Paul Murrell
correct CM font so my viewer must be working. Any other ideas would be welcome. Is it possible that you have set the fonts up using PostScriptFonts() when you should really be using pdfFonts() ? Paul Paul Murrell wrote: Hi Also see http://www.stat.auckland.ac.nz/~paul/R/CM/CMR.html Pa

Re: [R] how to change the thickness of the lines of the boxplot outliers

2009-07-30 Thread Paul Murrell
ained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/~paul/ __ R-help@r-project.org mailing list

Re: [R] how to change the thickness of the lines of the boxplot outliers

2009-07-30 Thread Paul Murrell
ovide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/~paul/ -- Waverley @ Palo Alto -- Dr Paul Murrel

Re: [R] lattice grob

2010-03-21 Thread Paul Murrell
ls_2.6.1 __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell

Re: [R] Using dev.copy

2010-03-24 Thread Paul Murrell
s a lot, Dan __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul M

Re: [R] lattice grob

2010-03-24 Thread Paul Murrell
g mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckl

Re: [R] Insert .eps files in to an R plot.

2010-03-25 Thread Paul Murrell
hard/painful to write a *general* drawing function for the imported image using base graphics). Paul harder to work with base plots, on the other hand if your plot is grid based, then it will work better than subplot). Hope this helps, -- Dr Paul Murrell Department of Statistics The Univers

Re: [R] grid graphics - concatenating gLists - is there a function?

2010-03-28 Thread Paul Murrell
version deleted]] -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/~paul/ __ R-help@r-project.org mailing list http

Re: [R] Compare two data frames

2010-04-22 Thread Paul Murrell
amespace (and not attached): [1] tools_2.10.1 __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.

Re: [R] R2.11.0 - rasterImage() and barplot fill-patterns

2010-04-22 Thread Paul Murrell
very slightly for one of the extreme bins. (Based on a report by Martin Becker.) o If xy[z].coords (used internally by many graphics functions) are given a list as 'x', they now check that the list has suitable names and give a more informative erro

Re: [R] 2 simple question

2010-04-25 Thread Paul Murrell
lf-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/~paul/ __ R-help@r-project.org ma

Re: [R] I can't with expression

2010-04-26 Thread Paul Murrell
ect.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http:/

Re: [R] Creating grid graphics with grid.layout

2009-09-24 Thread Paul Murrell
R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department

Re: [R] graphics mailing list?

2009-09-24 Thread Paul Murrell
___ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The Universit

Re: [R] packGrob and dynamic resizing

2009-09-24 Thread Paul Murrell
Hi baptiste auguie wrote: Dear all, I'm trying to follow an old document to use Grid frames, Creating Tables of Text Using grid Paul Murrell July 9, 2003 As a minimal example, I wrote this, gf <- grid.frame(layout = grid.layout(1, 1), draw = TRUE) label1 <- textGrob("te

Re: [R] packGrob and dynamic resizing

2009-09-28 Thread Paul Murrell
nd packGrob because doing the placement myself is much faster (and for most of the cases I'm interested in, the full power of packGrob is not needed) Hadley -- http://had.co.nz/ -- Dr Paul Murrell Department of Statistics The University of Auckland Priv

Re: [R] About finding NA values sources

2009-10-11 Thread Paul Murrell
deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell

Re: [R] fill map with gradient: package?

2009-11-04 Thread Paul Murrell
Hi Thomas Steiner wrote: Hi, I'd like to fill an existing svg (or png) map with gradient colors. In detail: The file http://commons.wikimedia.org/wiki/File:Karte_%C3%96sterreich_Bundesl%C3%A4nder.svg should be filled with the population density data from this table: http://de.wikipedia.org/wiki

Re: [R] Passing arguments to gpar

2009-12-06 Thread Paul Murrell
R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.aucklan

Re: [R] arrow plots

2009-12-19 Thread Paul Murrell
ideas (?) Paul -Deepayan __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- D

Re: [R] How to put text outside an xyplot?

2009-12-21 Thread Paul Murrell
the color key",1.2,0.5,rot=90)#does not work. }, xlab="x",ylab="y", legend=list(right=list(fun=draw.colorkey,args=list(key=list(col=mygray(10),at=1:10 ) #dev.off() __ R-help@r-project.org mailing list https://stat.et

Re: [R] times family unavailable in postscript device (Ubuntu Linux)

2009-05-12 Thread Paul Murrell
C-JP" > > $pdfresource > [1] "" > > attr(,"class") > [1] "CIDFont" > > $Japan1HeiMin > $family > [1] "HeiseiMin-W3" > > $metrics > [1] "" "" ""

Re: [R] Graphic aspect ratio

2009-05-12 Thread Paul Murrell
E) for (i in 1:6) plot(1:i) Paul > thanks > > mike -- Dr Paul Murrell Department of Statistics The University of Auckland Private Bag 92019 Auckland New Zealand 64 9 3737599 x85392 p...@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/~paul/

Re: [R] ggplot2: annotating plot with mathematical formulae

2009-05-17 Thread Paul Murrell
__ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Dr Paul Murrell Department of Statistics The

Re: [R] grid.edit() for ggplot2

2009-06-01 Thread Paul Murrell
uot;)) ... does that give you what you were looking for ? Paul Thanks for any piece of advice, baptiste __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posti

Re: [R] lattice: horizontal alignment of labels in key

2009-06-02 Thread Paul Murrell
Any ideas how I could circumvent the problem (other than manipulating the key grob)? Best wishes Thomas Zumbrunn __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.or

  1   2   3   >