[R] showing error line

2013-06-20 Thread Jannis

Dear R users,


i am trying to get the line number of the code where an error is 
produced. With the options:


options(keep.source = TRUE, show.error.locations = TRUE, 
keep.source.pkgs = TRUE)


I have managed to get the error locations to show up when i source the 
respective files. They do not, however, show up for the same errors when 
I use installed packages. Do I have to build these packages in a 
specific way?



Cheers
Jannis

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] showing error line

2013-06-20 Thread Pascal Oettli
Hi,

What is the error message? You don't provide it.

Regards,
Pascal


2013/6/20 Jannis bt_jan...@yahoo.de

 Dear R users,


 i am trying to get the line number of the code where an error is produced.
 With the options:

 options(keep.source = TRUE, show.error.locations = TRUE, keep.source.pkgs
 = TRUE)

 I have managed to get the error locations to show up when i source the
 respective files. They do not, however, show up for the same errors when I
 use installed packages. Do I have to build these packages in a specific way?


 Cheers
 Jannis

 __**
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/**listinfo/r-helphttps://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide http://www.R-project.org/**
 posting-guide.html http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.


[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] showing error line

2013-06-20 Thread Duncan Murdoch

On 13-06-20 7:42 AM, Jannis wrote:

Dear R users,


i am trying to get the line number of the code where an error is
produced. With the options:

options(keep.source = TRUE, show.error.locations = TRUE,
keep.source.pkgs = TRUE)

I have managed to get the error locations to show up when i source the
respective files. They do not, however, show up for the same errors when
I use installed packages. Do I have to build these packages in a
specific way?


You need to install them from source with those options in place.  A 
binary install won't include the line number information.


If you do your installs from the command line, you can set environment 
variable


R_KEEP_PKG_SOURCE=yes

but you can also do it from within R with the options above, using

install.packages(foo.tar.gz, type=source, repos=NULL)

Duncan Murdoch

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.