Open lecy opened 4 days ago
Thanks for the bug report; sorry you ran into this. Will investigate further. I notice the code runs if you set p_r
to the default or to a specific value. So for now I'm able to get around the bug by first estimating p_r
using bisg()
and then plugging that in:
p_r_est = attr(bisg(~ nm(Lastname) + zip(ZIP.PPL), data=d, p_r="estimate"), "p_r")
m <- bisg_me( ~ nm(Lastname) + zip(ZIP.PPL), p_r=p_r_est, data=d)
Any ideas here?