[R] Graphic representation of model results

2007-09-03 Thread Guillaume Brutel
Dear list members, I am facing difficulties in making a graphics that could show visually results of a model. I have tested the effects of 4 quantitative variables (Z1, Z2, Z3, Z4) on a variable Y using a weighted mixed effects GLM with weights W (using the glmmPQL function). I applied a

[R] Graphic representation of model results

2007-09-03 Thread Guillaume Brutel
Apologies for cross-posting but I think my previous mail was in HTML (which is inadvisable for the help mailing list). Dear list members, I am facing difficulties in making a graphics that could show visually results of a model. I have tested

[R] Graphic plots in pdf (position)

2007-04-26 Thread Felix Wave
Hello, I have got three graphics. pdf(output.pdf) persp(zPERSP_1) persp(zPERSP_2) persp(zPERSP_3) dev.off() I will write all those on one page of a pdf file. On the left side I will write some lines text. Is this possible, positioning graphic and text elements in pdf? I has already thought I

Re: [R] Graphic plots in pdf (position)

2007-04-26 Thread Stefan Grosse
you can place the figures with print command, e.g. pdf(output.pdf) print(text or textplot,position=c(0,0,.5,.5),more=T) print(persp(zPERSP_1),position=c(.5,0,1,0),more=T) print(persp(zPERSP_2),position=c(0,0.5,0.5,1),more=T) print(persp(zPERSP_3),position=c(.5,.5,1,1)) dev.off() pdf has options

Re: [R] graphic output file format

2006-08-11 Thread Jeffrey Horner
Luiz Rodrigo Tozzi wrote: Hi I had some problems using GDD, especially with colors and with some advanced plottings. In my case I didnt try the Cairo, I just got back to the png() using Xvfb (its almost 3 or 4 times slower than my first tries qith GDD, but using GDD would cause me to

Re: [R] graphic output file format

2006-08-10 Thread Stefan Grosse
What speaks against using the jpeg (or png) device? type: ?jpeg for help Have also a look at the wiki: http://wiki.r-project.org/rwiki/doku.php?id=tips:graphics-base:0savegraphs Stefan Conan Phelan schrieb: I would like to save graphics I produce in jpeg or gif formats. The GDD package

Re: [R] graphic output file format

2006-08-10 Thread Stefan Grosse
Please mail always also to the list, since it may be that there is someone who could reply better and/or faster. Especially in this case since I am only experienced in M$ Windows and Linux so I am unable to guess whats wrong with OSX. does not even the postscript device work? With postscript I

Re: [R] graphic output file format

2006-08-10 Thread erick
I received the following communication from the package maintainer for GDD (Simon Urbanek) when I was having compile problems on linux... gd.x86_642.0.28-4.4E.1 installed Matched from: ^^ +--- your GD is too old. You'll need at least

Re: [R] graphic output file format

2006-08-10 Thread Luiz Rodrigo Tozzi
Hi I had some problems using GDD, especially with colors and with some advanced plottings. In my case I didnt try the Cairo, I just got back to the png() using Xvfb (its almost 3 or 4 times slower than my first tries qith GDD, but using GDD would cause me to rewirte some parts of my script)

[R] graphic output file format

2006-08-09 Thread Conan Phelan
I would like to save graphics I produce in jpeg or gif formats. The GDD package sounds like it should let me to do this, but I cannot get it to install (error: Can't find gd.h!). Anyone know what's up? Thnx, C __ R-help@stat.math.ethz.ch mailing list

Re: [R] Basic: setting resolution and size of an R graphic

2005-10-25 Thread Dr. med. Peter Robinson
Thanks Marc and Jim for the tips. The PDF file that I create with R looks about the same as the one you created. However, I need to get the graphic to be a certain size (300 pixels wide). I have been using the ImageMagick program to do so for other graphics: convert test.pdf -resize 300x300

Re: [R] Basic: setting resolution and size of an R graphic

2005-10-25 Thread Marc Schwartz
If you specifically need the plot to have a dimension measured in pixels, then you need to use a bitmapped format such as png and specify the output to be the size you require: png(test.png, width = 300, height = 300, ...) DoYourPlotHere() dev.off() Do this directly using the png() device,

Re: [R] Basic: setting resolution and size of an R graphic

2005-10-25 Thread Romain Francois
Le 25.10.2005 14:59, Marc Schwartz a écrit : If you specifically need the plot to have a dimension measured in pixels, then you need to use a bitmapped format such as png and specify the output to be the size you require: png(test.png, width = 300, height = 300, ...) DoYourPlotHere()

[R] Basic: setting resolution and size of an R graphic

2005-10-24 Thread Dr. med. Peter Robinson
Dear List, I am sorry if this perhaps a too basic question, but I have not found an answer in Google or in the R help system. I am trying to use R to do a very simple analysis of some data (RT-PCR and Western analysis) with a T-test and to plot the results as a histogram with error bars. (I have

Re: [R] Basic: setting resolution and size of an R graphic

2005-10-24 Thread Marc Schwartz (via MN)
On Mon, 2005-10-24 at 22:32 +0200, Dr. med. Peter Robinson wrote: Dear List, I am sorry if this perhaps a too basic question, but I have not found an answer in Google or in the R help system. I am trying to use R to do a very simple analysis of some data (RT-PCR and Western analysis) with a

[R] graphic window with tabs

2005-06-27 Thread Marco Zucchelli
Hi, I need to display several plots and I wonder if it is possible to create a graphic window with tabs so that the plots can be scrolled clicking on the tabs Best regards Marco [[alternative HTML version deleted]] __

Re: [R] graphic window with tabs

2005-06-27 Thread Duncan Murdoch
Marco Zucchelli wrote: Hi, I need to display several plots and I wonder if it is possible to create a graphic window with tabs so that the plots can be scrolled clicking on the tabs You don't say what platform you're working on. On Windows, the standard graphics driver doesn't support

[R] graphic

2005-05-16 Thread Faouzi LYAZRHI
Hi, poids taillefumeursexesportetat 85184ouihomme1malade 65175ouihomme1malade 74180ouihomme2gueri 79175ouihomme2malade 71165nonhomme3gueri 80185nonhomme3gueri 75

Re: [R] graphic

2005-05-16 Thread Petr Pikal
Hallo See lattice temp-read.table(clipboard, header=T) temp poids taille fumeur sexe sport etat 1 85184oui homme 1 malade 2 65175oui homme 1 malade 3 74180oui homme 2 gueri 4 79175oui homme 2 malade 5 71165non

Re: [R] graphic representation of a qda object

2004-07-04 Thread Prof Brian Ripley
Please do your homework. qda is part of MASS (uncredited by you) and the posting guide does ask you to consult that book. If you had done so you would have found examples (start with the one on p.340) On Sat, 3 Jul 2004, Robin Gruna wrote: I'm a R newbie and I have a supervised 2-class

[R] graphic representation of a qda object

2004-07-03 Thread Robin Gruna
Hi, I'm a R newbie and I have a supervised 2-class classification problem. To find out the best representation of my data (dim = 45). I want to perform LDA und QDA on the diffrent data representations to find out, which is best to discriminate the 2 sets. For LDA there exists a method plot.lda

[R] Graphic size with X11 device

2004-05-05 Thread Laetitia Marisa
Hello, I have done a script that make multiple graphics : one graphic per columns of my data matrix and one x11 window every 4 graphcis. For example, if my matrix has 6 columns, there will appears one x11 window with 4 graphics and a second one with the last 2 graphics. I wanted that all

Re: [R] Graphic size with X11 device

2004-05-05 Thread Prof Brian Ripley
Are you using par(mfrow)? If so, that changes the base cex for layouts with 2 or more rows and columns. Otherwise, the text size should be the same, but in calculating the window size you have to compute the device not plot region, that is included the margins (and outer margins) which are of

Re: [R] graphic device MetaPost

2004-03-08 Thread Na Li
On 7 Mar 2004, Jinsong Zhao said: use Chinese character in plots with a minor modification to the MetaPost file. I never tried this, but maybe it is possible to use the psfrag LaTeX package to insert Chinese characters into an eps file (with the help of proper ps fonts and the CJK packages of

[R] graphic device MetaPost

2004-03-07 Thread Jinsong Zhao
Hi all, By default, MetaPost passes all text through TeX. This has the advantage of allowing essentially any TeX symbols in titles and labels. It give us, who use the multibyte character in ordinary communication, much convenience. Gnuplot has fulfilled this function, and it give me a deep

Re: [R] graphic device MetaPost

2004-03-07 Thread Prof Brian Ripley
On Sun, 7 Mar 2004, [gb2312] Jinsong Zhao wrote: By default, MetaPost passes all text through TeX. This has the advantage of allowing essentially any TeX symbols in titles and labels. It give us, who use the multibyte character in ordinary communication, much convenience. Gnuplot has

Re: [R] graphic device MetaPost

2004-03-07 Thread Gabor Grothendieck
] Subject: Re: [R] graphic device MetaPost On Sun, 7 Mar 2004, [gb2312] Jinsong Zhao wrote: By default, MetaPost passes all text through TeX. This has the advantage of allowing essentially any TeX symbols in titles and labels. It give us, who use the multibyte character in ordinary

Re: [R] graphic device MetaPost

2004-03-07 Thread Itay Furman
will. Who knows? No one will if no one knows about it. Date: Sun, 7 Mar 2004 14:42:17 + (GMT) From: Prof Brian Ripley [EMAIL PROTECTED] To: =?gb2312?q?Jinsong=20Zhao?= [EMAIL PROTECTED] Cc: rhelp [EMAIL PROTECTED] Subject: Re: [R] graphic device MetaPost On Sun, 7 Mar

Re: [R] graphic widow overwrite

2003-08-22 Thread Uwe Ligges
Andrew C. Ward wrote: You may prefer to use S-PLUS if it does precisely what you want. In R, you could use postscript() or pdf() to save all the graphs to a file and then view them at your leisure. There is always par(ask=TRUE) if you wanted to look at them on the screen. ... or you might want to

[R] graphic widow overwrite

2003-08-21 Thread array chip
Hi, I am running a loop to plot multiple plots. In s-plus, it shows multiple pages in the graphic window to allow checking on each plot. but in R, the next plot always overwrite the previous one, so i can only have the last plot produced, is there a way to have multiple pages in the graphic

Re: [R] graphic widow overwrite

2003-08-21 Thread Thomas W Blackwell
No, I don't think so. That's a feature not implemented in R. - tom blackwell - u michigan medical school - ann arbor - On Thu, 21 Aug 2003, array chip wrote: I am running a loop to plot multiple plots. In s-plus, it shows multiple pages in the graphic window to allow checking on each

Re: [R] graphic widow overwrite

2003-08-21 Thread Thomas Lumley
On Thu, 21 Aug 2003, array chip wrote: Hi, I am running a loop to plot multiple plots. In s-plus, it shows multiple pages in the graphic window to allow checking on each plot. but in R, the next plot always overwrite the previous one, so i can only have the last plot produced, is there a

Re: [R] graphic widow overwrite

2003-08-21 Thread Andrew C. Ward
You may prefer to use S-PLUS if it does precisely what you want. In R, you could use postscript() or pdf() to save all the graphs to a file and then view them at your leisure. There is always par(ask=TRUE) if you wanted to look at them on the screen. Regards, Andrew C. Ward CAPE Centre

[R] graphic device sequence/ Rprofile(options)

2003-08-14 Thread john lewis
Hello Is there a way to set an option in Rprofile to open a new graphic device number (and save the old one)? Right now I am embedding a statement such as if(dev.cur() == 3) get(getOption(device))(4) in my script each time that I want a new graphic's device opened? I notice there is an option