[R] Inspecting C code in an R package

2011-06-11 Thread Layman123
of the package. Does someone know, where the corresponding C-Code ist stored, so I could inspect it and comprehend what is happening? Thank you very much in advance! Regards Roman -- View this message in context: http://r.789695.n4.nabble.com/Inspecting-C-code-in-an-R-package-tp3590596p3590596.html Sent

Re: [R] Inspecting C code in an R package

2011-06-11 Thread Sarah Goslee
The easiest thing to do is download the source package from your local CRAN mirror. That will contain all the R and other code. Sarah On Sat, Jun 11, 2011 at 10:50 AM, Layman123 romanhorn...@web.de wrote: Hello everyone, Trying to comprehend code of an R package, I encountered the problem

Re: [R] Inspecting C code in an R package

2011-06-11 Thread Layman123
.nabble.com/Inspecting-C-code-in-an-R-package-tp3590596p3590641.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R

Re: [R] Inspecting C code in an R package

2011-06-11 Thread Jeff Newmiller
of the package. Does someone know, where the corresponding C-Code ist stored, so I could inspect it and comprehend what is happening? Thank you very much in advance! Regards Roman -- View this message in context: http://r.789695.n4.nabble.com/Inspecting-C-code-in-an-R-package-tp3590596p3590596

Re: [R] Inspecting C code in an R package

2011-06-11 Thread Layman123
Thank you! Of course, I will read the posting guidelines. A subscriber helped me via e-mail telling me to use the grep-command, that is type in: grep somename *.c. For Windows users it's: findstr somename *.c. -- View this message in context: http://r.789695.n4.nabble.com/Inspecting-C-code

Re: [R] Inspecting C code in an R package

2011-06-11 Thread Barry Rowlingson
On Sat, Jun 11, 2011 at 5:31 PM, Layman123 romanhorn...@web.de wrote: Thank you! Of course, I will read the posting guidelines. A subscriber helped me via e-mail telling me to use the grep-command, that is type in: grep somename *.c. For Windows users it's: findstr somename *.c. The problem