Re: [R] Split plot panel into rows with different columns

2021-10-21 Thread Luigi Marongiu
Yes, you are right, it works fine when plotting on file. Thank you! On Thu, Oct 21, 2021 at 11:42 PM Bert Gunter wrote: > > The syntax is correct; the default margins are too large for your device. > > For example, using your split screen specs on the RStudioGD > > > split.screen(c(3, 1)) #

Re: [R] Split plot panel into rows with different columns

2021-10-21 Thread Jim Lemon
Hi Luigi, Bert has identified the problem. If the ordinates in each row are the same, you can save quite a bit of space by setting the left and right margins to zero on all but the left plots in each row. This will jam the plots together at the sides, but that may not matter to you. Remember that y

Re: [R] Split plot panel into rows with different columns

2021-10-21 Thread Bert Gunter
The syntax is correct; the default margins are too large for your device. For example, using your split screen specs on the RStudioGD > split.screen(c(3, 1)) # split display into 3 screens [1] 1 2 3 > > split.screen(c(1, 2), screen = 2) # split second screen into two columns [1] 4 5 > > spl

[R] Split plot panel into rows with different columns

2021-10-21 Thread Luigi Marongiu
Hello, I would like to draw 5 figures in the same plot. The layout is: first row: 1 column second row: 2 columns third row: 2 columns I have used split.screen: ``` > split.screen(c(3, 1)) # split display into 3 screens [1] 1 2 3 > split.screen(c(1, 2), screen = 2) # split second screen

Re: [R] small object but huge RData file exported

2021-10-21 Thread Duncan Murdoch
On 21/10/2021 2:09 a.m., Jinsong Zhao wrote: This example has demoed the similar or same characteristics of my question. If I > save(formula, file = "abc.RData") and then in a new launched R session, I > load("abc.RData") > formula x ~ y I want to know what are stored in the , and how to

Re: [R] Do not show a "message d'avis" that qbeta reports

2021-10-21 Thread Marc Girondot via R-help
Philippe has convinced me that the translation "Message d'avis" was the best based on the constraints in the way R displays messages. I agree that Avertissement was much better but it was too long. Then the solution is to force the console messages to be in English when there is something stra

[R] [R-pkgs] NMOF 2.5-0 (Numerical Methods and Optimization in Finance)

2021-10-21 Thread Enrico Schumann
Dear all, version 2.5-0 of package NMOF is on CRAN now. (Incidentally, today is 20 October 2021, which marks the 10th anniversary of NMOF on CRAN.) NMOF stands for 'Numerical Methods and Optimization in Finance', and it accompanies the book with the same name, written by Manfred Gilli, Dietmar Ma

[R] polygon is not filled by color with alpha when outside of plot region

2021-10-21 Thread Jinsong Zhao
Hi there, Here is the codes that could demo the problem: # work as expected plot(1:5) polygon(c(1.5, 6.5, 6.5, 1.5), c(1.5, 1.5, 6.5, 6.5), col = "gray") # the polygon at right upper is not filled by gray with alpha = 0.5 plot(1:5) polygon(c(1.5, 6.5, 6.5, 1.5), c(1.5, 1.5, 6.5, 6.5), col = ad

Re: [R] small object but huge RData file exported

2021-10-21 Thread Jinsong Zhao
Thanks a lot for your kindly reply and explanation. Environment is something hard for me. I will follow the advice from Duncan and Jeff. Best, Jinsong On 2021/10/21 14:36, Jeff Newmiller wrote: That depends what was in the active environment when you created that formula. You would probably b