JackStat / CompPack

Functions for Computational Statistics
2 stars 3 forks source link

Repar function #14

Open cispy opened 11 years ago

cispy commented 11 years ago

anyone remember what this function do...I remember using it for something on another function, but I can't seem to find that function anymore.

repar = function(param) { p = exp(param[1])/(1+exp(param[1])) q = (1-p) * exp(param[2])/(1+exp(param[2])) r = 1 - p - q c(p,q,r) }