Hi,
I have used predict function to analyze the performance of my model
predict(Model, Population, Parameters)
this function has given me output which includes “DV_pred” & “DV_ipred”
how can i find out the predicted parameters for each subject ?
Thanks
korsbo
August 9, 2022, 7:09am
2
Hi, I think that the following might work:
icoef(Model, Population, Parameters)
Cheers
1 Like
Thanks @korsbo , is there a way to get directly from predict function. So that i can see how “DV_ipred” is predicted.
korsbo
August 9, 2022, 7:39am
4
Hmm, I think the answer is “unfortunately not”.
Both the icoef and the predict function internally calculate the empirical bayes estimates and neither of the functions directly includes that information in the returned object.
1 Like
vijay
August 9, 2022, 8:12am
5
The predicted parameters is what is being asked for, so the icoef function will provide that information.
1 Like