Hi,

Looking for a function in R that can help me calculate a parameter that
maximizes the likelihood over groups of observations.

The general formula is:

p = exp(xb) / sum(exp(xb))

So, according to the formulas I've seen published, to do this "by group" is

product(p = exp(x_i * b_i) / sum(exp(x_i b_i)))

Where i represents a "group" and we iterate through each group.

Does anybody have any suggestions?

Thanks!


-N

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to