[R] looking at C code from the stats package

2014-05-29 Thread Erin Hodgess
Dear R People: How are you? I would like to look at the underlying C code from the program C_ARIMA_Like in the stats package. However, since that is a base package, I'm not entirely sure how to access this. When I used the .C(C_ARIMA_Like) it says that the C_ARIMA_Like cannot be found.

Re: [R] looking at C code from the stats package

2014-05-29 Thread Marc Schwartz
On May 29, 2014, at 7:12 PM, Erin Hodgess erinm.hodg...@gmail.com wrote: Dear R People: How are you? I would like to look at the underlying C code from the program C_ARIMA_Like in the stats package. However, since that is a base package, I'm not entirely sure how to access this.

Re: [R] looking at C code from the stats package

2014-05-29 Thread Erin Hodgess
Perfect! Thanks so much for your help! Erin On Thu, May 29, 2014 at 8:52 PM, Marc Schwartz marc_schwa...@me.com wrote: On May 29, 2014, at 7:12 PM, Erin Hodgess erinm.hodg...@gmail.com wrote: Dear R People: How are you? I would like to look at the underlying C code from the

Re: [R] looking at C code from the stats package

2014-05-29 Thread Jeff Newmiller
You need to download the R source code to view source code of compiled functions, whether they are C or Fortran or any other compiled language. Are you familiar with compiled languages? --- Jeff Newmiller