I have this function:
> λ.est <- function(x){
mle.optim <- mle2(paretoNLL,start=list(λ=-0.7),data=list(x=x),trace=TRUE)
return(summary(mle.optim)@coef[1,1:4])
}
that fit a distribution and retuns the parameter estimate, std. error, z value and p for my model.
I have to apply this function to different subsets of my original data frame size defined by a combination of factor pond,habitat,treatment,date , and to do this I'm using the ddply function:
> mle.λ <- ddply(size, .(pond,habitat,treatment,date),
summarise, λ=λ.est(x=mass.wei))
the problem is that, by doing this, I can only add one column a time to the new data frame mle.λ , wereas I need to add to mle.λ four new columns, one for each of the outputs of λ.est
basically something that look like this:
> mle.λ
pond habitat treatment date estimate std. error z value Pr(z)
- - - - - - - -
- - - - - - - -
- - - - - - - -
- - - - - - - -
- - - - - - - -
...
So far I've been writing a different function for each output needed, but I'd like to do some code economy...is there any way to do it all in one go?
thanks matteo