Re: [R] aborting the execution of a script...

2023-04-12 Thread akshay kulkarni
From: Duncan Murdoch Sent: Wednesday, April 12, 2023 5:46 PM To: akshay kulkarni ; R help Mailing list Subject: Re: [R] aborting the execution of a script... This is what I get: > source("~/temp/test.R", echo = TRUE) > print(1) [1] 1 > stop(&q

Re: [R] aborting the execution of a script...

2023-04-12 Thread Duncan Murdoch
help Mailing list *Subject:* Re: [R] aborting the execution of a script... On 12/04/2023 7:03 a.m., akshay kulkarni wrote: Dear members,   I have a script which I source it interactively. I have the following questions:     1.  If there is an error in an expression

Re: [R] aborting the execution of a script...

2023-04-12 Thread akshay kulkarni
: Re: [R] aborting the execution of a script... On 12/04/2023 7:03 a.m., akshay kulkarni wrote: > Dear members, > I have a script which I source it interactively. > I have the following questions: > > >1. If there is an error in an expression

Re: [R] aborting the execution of a script...

2023-04-12 Thread Duncan Murdoch
On 12/04/2023 7:03 a.m., akshay kulkarni wrote: Dear members, I have a script which I source it interactively. I have the following questions: 1. If there is an error in an expression, an error message is printed, but the execution continues till the end of

[R] aborting the execution of a script...

2023-04-12 Thread akshay kulkarni
Dear members, I have a script which I source it interactively. I have the following questions: 1. If there is an error in an expression, an error message is printed, but the execution continues till the end of the script. I am sourcing with echo. Is there any