Re: [R] Program to produce multiple plots

2020-03-30 Thread Eric Berger
Another comment: if you are running your program in RStudio, it will create the sequence of plots but you need to "page back" to see them. Click the "Plots" tab and notice there are two arrows: back (pointing to the left) and forward (pointing to the right) HTH, Eric On Mon, Mar 30, 2020 at 5:04

Re: [R] Program to produce multiple plots

2020-03-30 Thread Richard M. Heiberger
you probably forgot the print() statement. Both lattice and ggplot require a print() in this situation. See the help files. On Mon, Mar 30, 2020 at 10:04 Ashim Kapoor wrote: > Dear David, > > Try this :- > par(mfrow=c(1,2)) > hist(rnorm(100)) > hist(rnorm(100,100,1)) > > Best Regards, > Ashim >

Re: [R] Program to produce multiple plots

2020-03-30 Thread Ashim Kapoor
Dear David, Try this :- par(mfrow=c(1,2)) hist(rnorm(100)) hist(rnorm(100,100,1)) Best Regards, Ashim On Mon, Mar 30, 2020 at 7:16 PM David wrote: > I wrote a little program that asked to produce two plots, but when I ran > it, I saw only the second plot. Is there a way to write a program th

Re: [R] program

2014-04-15 Thread PIKAL Petr
Hi No attachment allowed. Well, some yes but not many. Do not expect somebody will go through great deal of code. Try instead locate source of problems yourself. If you are lucky you will find it out without intervence of others, if not you will be able to post more straight question which can

Re: [R] Program SPACECAP help

2013-07-16 Thread Jose Jimenez
Please, could you post the the R code and the head of your data? Are you usuing the csv template? Jose -- View this message in context: http://r.789695.n4.nabble.com/Program-SPACECAP-help-tp4670514p4671667.html Sent from the R help mailing list archive at Nabble.com. _

Re: [R] program of matrix

2012-08-06 Thread David Winsemius
On Aug 6, 2012, at 11:16 AM, hafida wrote: I CANT FIND ANY ANSWER MR DAVID When I suggested that you learn to use the shift key, I was hoping for a sparing use of that key, such as at the beginning of sentences. The caps-lock key is different than the shift key. You are also posting to

Re: [R] program of matrix

2012-08-06 Thread hafida
I CANT FIND ANY ANSWER MR DAVID -- View this message in context: http://r.789695.n4.nabble.com/program-of-matrix-tp4639288p4639332.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://stat.ethz.ch

Re: [R] program of matrix

2012-08-06 Thread hafida
A OK I MAKE A MISTAKE OK MR DAVID I WILL DO IT THANK YOU -- View this message in context: http://r.789695.n4.nabble.com/program-of-matrix-tp4639288p4639334.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mail

Re: [R] program of matrix

2012-08-06 Thread David Winsemius
Well, I just posted the fourth copy to the list which I apologize for. (I meant to delete the response I wrote.) Re-re-posting an unclear message seems unwise on your part, 'hafida'. You are not following the advice in the footer to all messages and you are not following the advice in the

Re: [R] program of matrix

2012-08-06 Thread David Winsemius
On Aug 6, 2012, at 8:04 AM, hafida wrote: Hi can ANY body help me to programme this formula: c[lj] and c[l'j] are matrix A[j]^-1 is an invertible diagonal matrix g[ll']=i[ll'] - sum *#from j=1 to k#* c[lj]c[l'j]A[j]^-1 WHERE i[ll']= 1/n sum from i=1 to n z[il] z[il'] n,k,m are

Re: [R] program never enters browser mode when I add browser()

2011-10-29 Thread Patrick Burns
I see two possibilities: 1) the call to 'browser' is inside an 'if' clause that doesn't exectute. 2) the call forgets the parentheses, so it is: browser rather than browser() On 28/10/2011 20:04, M. Tran wrote: Dear All I have a program that breaks at the following lines of code: big

Re: [R] program never enters browser mode when I add browser()

2011-10-28 Thread Joshua Wiley
Hi Michelle, In addition to Jeff's advice, can you now reproduce the original error? What you are describing is highly improbable if everything is properly executed. It becomes more likely if more was chagned between running than just inserting browser(). For example, if you reran/had made chan

Re: [R] program never enters browser mode when I add browser()

2011-10-28 Thread Jeff Newmiller
Short answer: I have not. Long answer: Read the posting guide. Provide a reproducible example. Show actual error messages. Identify your operating system and version of R. Read the posting guide. Then try posting again. ---

Re: [R] Program BFAST

2010-10-12 Thread Michael Bedward
Hello, Looking at the bfast help page is says that the "output" component of the returned object is a list where the elements correspond to results for each iteration of the fitting algorithm. Michael On 13 October 2010 15:58, CALEF ALEJANDRO RODRIGUEZ CUEVAS wrote: > Hi everybody. > > I'm usi

Re: [R] program R using mac Xcode

2010-06-17 Thread Charles C. Berry
On Thu, 17 Jun 2010, Waverley @ Palo Alto wrote: Hi, I am starting to use Xcode a lot for C/C++ programming. Can you do R programming in Xcode? If can, how to configure to enable this? Better to post to R-sig-mac for this question. Refer to Writing R Extensions and R for M

Re: [R] Program output to file using a batch command file

2007-12-31 Thread Charles C. Berry
On Mon, 31 Dec 2007, Jean-Victor C?t? wrote: If I copy the following commands in my batch file to the R console, R creates a file named "basicStatsIBM.lis" with the program output in it: Sortie <- file(description = "basicStatsIBM.lis", open = "wt", blocking = TRUE, encoding = "UTF-8") sin