fit_adjust_model results can't be stored? #94
-
Hi! I've been running into a problem where I'll call fit_adjust_model on several samples and then return the results, but all the results will be the same. For example:
Will print:
Despite being fitted to different samples. I know the results are different because when I print them before the next fit_adjust_model() call, they are accurate. Is there a fix to this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Fit adjust model is called "adjust" model because it takes a single model object and changes it. Here you are reusing the same model object. If you make separate calls to Model for each it will work, e.g.,
it will work |
Beta Was this translation helpful? Give feedback.
Fit adjust model is called "adjust" model because it takes a single model object and changes it. Here you are reusing the same model object. If you make separate calls to Model for each it will work, e.g.,
it will work