Re: [R] R debugging options

2006-04-22 Thread Prof Brian Ripley
Subject: Re: [R] R debugging options Regarding a function that lists functions, have you considered getFunctions in library(svIDE)? You need to provide the argument, as in getFunctions(1); getFunctions() returns an error message. Beyond this, the objects function in S-Plus

Re: [R] R debugging options

2006-04-22 Thread Prof Brian Ripley
-Original Message- From: Spencer Graves [mailto:[EMAIL PROTECTED] Sent: Friday, April 21, 2006 11:21 AM To: John Fox Cc: 'Larry Howe'; r-help@stat.math.ethz.ch; Philippe Grosjean Subject: Re: [R] R debugging options Regarding a function that lists functions, have you

Re: [R] R debugging options

2006-04-22 Thread John Fox
' Subject: Re: [R] R debugging options On Sat, 22 Apr 2006, Prof Brian Ripley wrote: On Fri, 21 Apr 2006, John Fox wrote: Dear Spencer, I wasn't aware of getFunctions(), though I've now taken a look at it. It's pretty similar to listFunctions() (from my email to the list

Re: [R] R debugging options

2006-04-22 Thread Prof Brian Ripley
http://socserv.mcmaster.ca/jfox -Original Message- From: Prof Brian Ripley [mailto:[EMAIL PROTECTED] Sent: Saturday, April 22, 2006 3:08 AM To: John Fox Cc: r-help@stat.math.ethz.ch; 'Spencer Graves' Subject: Re: [R] R debugging options On Sat, 22

Re: [R] R debugging options

2006-04-21 Thread Spencer Graves
: Tuesday, April 18, 2006 12:46 PM To: r-help@stat.math.ethz.ch Subject: Re: [R] R debugging options On Monday April 17 2006 21:08, Francisco J. Zagmutt wrote: RSiteSearch(debug) or RSiteSearch(debugging) will give you a lot or relevant information. I personally use library(debug) extensivelly

Re: [R] R debugging options

2006-04-21 Thread John Fox
-Original Message- From: Spencer Graves [mailto:[EMAIL PROTECTED] Sent: Friday, April 21, 2006 11:21 AM To: John Fox Cc: 'Larry Howe'; r-help@stat.math.ethz.ch; Philippe Grosjean Subject: Re: [R] R debugging options Regarding a function

Re: [R] R debugging options

2006-04-18 Thread Larry Howe
On Monday April 17 2006 21:08, Francisco J. Zagmutt wrote: RSiteSearch(debug) or RSiteSearch(debugging) will give you a lot or relevant information. I personally use library(debug) extensivelly and it should do all the taks you asked about. There is a nice article describing the debug

Re: [R] R debugging options

2006-04-18 Thread John Fox
L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Larry Howe Sent: Tuesday, April 18, 2006 12:46 PM To: r-help@stat.math.ethz.ch Subject: Re: [R] R debugging

[R] R debugging options

2006-04-17 Thread Larry Howe
Hello, What options are available for me to debug my R scripts? For example I normally do something like source(myfunctions.R) function1(height, weight) myfunctions.R is a large R source file that contains many functions. function1 is the main function in myfunctions.R. It calls many other

Re: [R] R debugging options

2006-04-17 Thread Larry Howe
On Monday April 17 2006 19:45, Larry Howe wrote: Hello, What options are available for me to debug my R scripts? For example I normally do something like source(myfunctions.R) function1(height, weight) myfunctions.R is a large R source file that contains many functions. function1 is the

Re: [R] R debugging options

2006-04-17 Thread Francisco J. Zagmutt
/doc/Rnews/Rnews_2003-3.pdf Cheers Francisco From: Larry Howe [EMAIL PROTECTED] To: r-help@stat.math.ethz.ch Subject: Re: [R] R debugging options Date: Mon, 17 Apr 2006 20:29:47 -0400 On Monday April 17 2006 19:45, Larry Howe wrote: Hello, What options are available for me to debug my R

Re: [R] R debugging options

2006-04-17 Thread Duncan Murdoch
On 4/17/2006 7:45 PM, Larry Howe wrote: Hello, What options are available for me to debug my R scripts? For example I normally do something like source(myfunctions.R) function1(height, weight) myfunctions.R is a large R source file that contains many functions. function1 is the