Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose I'm curious about the workings of the R function, say HoltWinters. I typed HoltWinters and it shows me R source for the function. On inspection, the source shows the function is a wrapper around a second function:

    final.fit <- hw(alpha, beta, gamma)

Presumably, the serious work happens in the function hw. However, I can't find this function anywhere to read its source

> hw
Error: object 'hw' not found

How can I read the source?


Edit: Ok, so now I've read hw , I see it's a wrapper around C_HoltWinters. How can I read that ?

share|improve this question
3  
hw is defined earlier in the source code for HoltWinters. See line 47. – Ananda Mahto Aug 1 '12 at 10:40
So it is. Thanks! – Colonel Panic Aug 1 '12 at 10:43
I still can't see where the logic happens – Colonel Panic Aug 1 '12 at 10:43

1 Answer

up vote 6 down vote accepted

As you successfully found, there are lines

hw <- function(alpha, beta, gamma)
    .C(C_HoltWinters,
    ....

in the source of HoltWinters function. Which means that we need to look at C files: you can find all the source code of R here, or just go straight here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.