Re: [R] HELP IN GRAPHS - slip screen (URGENT)

2015-09-21 Thread Jim Lemon
Hi Rosa, I think I understand more or less what you want, but the example below uses made up data as I do not have access to your files. The following code should produce a block of eight plots with the y axes on the leftmost plots only and the x axes on the bottom row only. I think I have what

Re: [R] HELP IN GRAPHS - slip screen (URGENT)

2015-09-20 Thread Rosa Oliveira
Dear Jim, I’ve tried till today, but I could not solve the problems. 1. despite the scales are the same (equal: lambda ={0.70, 0.75, 0.80, 0.85, 0.90, 0.95, 0.98}), the "matrix" is not equal. If you see, for n = 250 the column is narrower than for n = 1000, and "lambda" has the same values.

Re: [R] HELP IN GRAPHS - slip screen

2015-09-18 Thread Jim Lemon
Hi Rosa, I have had a moment to look at your code. First I think you should start your device as: quartz(width=12,height=5) The split.screen code that I sent seems to work for me, giving the 3456 2 78910 layout of screens. To get the aspect ratio

Re: [R] HELP IN GRAPHS - slip screen

2015-09-17 Thread Jim Lemon
Hi Rosa, Try this: # do the first split, to get the rightmost screen for the legend split.screen(figs=matrix(c(0,0.84,0,1,0.84,1,0,1),nrow=2,byrow=TRUE)) # now split the first screen to get your eight screens (numbered 3 to 10) for the plots split.screen(figs=matrix(c(0,0.25,0.5,1,

Re: [R] HELP IN GRAPHS - slip screen

2015-09-17 Thread Jim Lemon
Hi Rosa, I don't think the problem is with the split.screen command, for you are getting the eight plots and the screen at the right as you requested. It looks like your margins for each plot need adjusting, and I also think you should have about a 2.2 to 1 width to height ratio in the graphics

[R] HELP IN GRAPHS - slip screen

2015-09-16 Thread Rosa Oliveira
Dear all, I’m trying to do a graph, 3 rows, 5 columns, with the design: # 3 4 5 6 #2 # 7 8 9 10 I had a code for 3 rows, 3 columns, with the design:: # 3 4 #2 # 7 8 and I tried to modify it, but I had no success :( I suppose

[R] Help with graphs in A4 size

2013-02-26 Thread Eva Prieto Castro
Hi, I need to generate complex graphics which have to be shown in the plot window but also in pdf file, and they must have A4 size. This is the reason why I use width=8.27 and heigth=11.69. The problem is that I don't make it runs when I put something (text, lines, and so on) outside the

Re: [R] Help with graphs in A4 size

2013-02-26 Thread Duncan Mackay
Hi Eva Apparently no problem for me with Win 7 as far as I can see. Perhaps returning to the command window may be a problem? R version 2.15.2 (2012-10-26) Platform: i386-w64-mingw32/i386 (32-bit) locale: [1] LC_COLLATE=English_Australia.1252 LC_CTYPE=English_Australia.1252

Re: [R] Help With Graphs

2008-11-08 Thread Gábor Csárdi
Moreover, use 'symbols' to draw the circle, it is a better and simpler solution. Gabor On Fri, Nov 7, 2008 at 9:02 PM, Sarah Goslee [EMAIL PROTECTED] wrote: ?text On Fri, Nov 7, 2008 at 12:42 PM, Alex99 [EMAIL PROTECTED] wrote: Hi guys, I am truing to draw a circle and choose 10 points on

[R] Help With Graphs

2008-11-07 Thread Alex99
Hi guys, I am truing to draw a circle and choose 10 points on the circle and put a number from 1 to 10 above each point. I don't have a problem with drawing a circle and choosing 10 points. my problem is with numbering . is it even possible to put a number above each chosen point? if so any idea

Re: [R] Help With Graphs

2008-11-07 Thread Sarah Goslee
?text On Fri, Nov 7, 2008 at 12:42 PM, Alex99 [EMAIL PROTECTED] wrote: Hi guys, I am truing to draw a circle and choose 10 points on the circle and put a number from 1 to 10 above each point. I don't have a problem with drawing a circle and choosing 10 points. my problem is with numbering .