Displaying 2 results from an estimated 2 matches for "paramvec".
2010 Jun 14
2
Zero counts lost with table() in functions
An embedded and charset-unspecified text was scrubbed...
Name: ikke tilgjengelig
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20100614/b070ca2f/attachment.pl>
2008 Oct 09
2
Help MLE
Dear,
I'm starting on R language. I would like some help to implement a MLE
function.
I wish to obtain the variables values (alpha12, w_g12, w_u12) that maximize
the function LL = Y*ln(alpha12 + g*w_g12 + u*w_u12).
Following the code:
rm(list=ls())
ls()
library(stats4)
Model = function(alpha12,w_g12,w_u12)
{
Y = 1
u = 0.5
g = -1
Y*log(alpha12 + g*w_g12 + u*w_u12)
}
res =