g3_fit()returns the likelihood score by data components fit$likelihood (as I understand aggregated by year-step) but I'm surprise that their sum doesn't match the overall likelihood score of the model fit$score. Am I missing something?
> fit1$likelihood %>% mutate(x=weight*value) %>% .$x %>% sum(na.rm=T)
[1] 2833.439
> fit1$likelihood %>% mutate(x=value) %>% .$x %>% sum(na.rm=T)
[1] 78.79221
> fit1$score
nll
1 7351.098