Dear R People: I have R Version 2.1.1. for Windows in binary form. I would like to look at the C code for massdist. It is part of the density function. How would I access this, please? Thank you very much! Sincerely, Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: hodgess at gator.uhd.edu
C program
3 messages · Erin Hodgess, Roger Bivand, Thomas Lumley
On Fri, 30 Sep 2005, Erin Hodgess wrote:
Dear R People: I have R Version 2.1.1. for Windows in binary form. I would like to look at the C code for massdist. It is part of the density function. How would I access this, please?
https://svn.r-project.org/R/trunk/src/appl/massdist.c is the online way.
Thank you very much! Sincerely, Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: hodgess at gator.uhd.edu
______________________________________________ R-help at stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
Roger Bivand Economic Geography Section, Department of Economics, Norwegian School of Economics and Business Administration, Helleveien 30, N-5045 Bergen, Norway. voice: +47 55 95 93 55; fax +47 55 95 95 43 e-mail: Roger.Bivand at nhh.no
On Fri, 30 Sep 2005, Erin Hodgess wrote:
Dear R People: I have R Version 2.1.1. for Windows in binary form. I would like to look at the C code for massdist. It is part of the density function.
The .C() call shows that massdist is in the base package. This means that it is likely to be in the src/appl or src/nmath directories of the R source code. Searching these (using grep on Linux) shows that it is in src/appl/massdist.c -thomas