Entering edit mode
vtshen
•
0
@vtshen-13292
Last seen 7.7 years ago
Hi,
I am learning the DESeq2 package. I have derived the log likelihood function in the negative binomial distribution, that is,
In the log_posterior function, the log likelihood part is
ll_part = sum(lgamma(y + alpha_neg1) - Rf_lgammafn(alpha_neg1) - y * log(mu + alpha_neg1) - alpha_neg1 * log(1.0 + mu * alpha));
I am not understanding this term above: Rf_lgammafn(alpha_neg1). I found that the function lgammafn() computes log|gamma(x)|, but I am thinking to use lgamma(alpha_neg1).
Thanks
Shen
Hi Prof Love, thanks for the quick reply. My question was not quite clear but I think you got it right. The question is why Rf_lgammafn instead of lgamma? Based on the logL formula, my first thought is to use lgamma() for the term log gamma(alpha_neg1), but you used Rf_lgammafn(). What is the difference between lgamma() and Rf_lgammafn()? Thanks.
I wrote this a while ago (2012) but I believe it's because alpha_neg1 is a double and the other quantities are Rcpp objects