You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed the following difference in behaviour from version 0.6.0 to 0.6.1 wrt. setting r (the number of bootstrap replications to compute):
In version 0.6.0 one could set r=100000 from within param_sim_sites and this overruled the global setting of r in the call to simaerep
simaerep(df_visit, param_sim_sites = list(r = 100000, poisson_test = FALSE), under_only = FALSE)
In version 0.6.1 the call:
simaerep(df_visit, param_sim_sites = list(r = 100000, poisson_test = FALSE), under_only = FALSE)
would result in simaerep using its default r (r=1000) instead of the varibale from param_sim_sites.
This can be vaioded by simply calling:
simaerep(df_visit, param_sim_sites = list(poisson_test = FALSE, r=r), r=100000, under_only = FALSE) with the newer version 0.6.1
The text was updated successfully, but these errors were encountered:
I noticed the following difference in behaviour from version 0.6.0 to 0.6.1 wrt. setting r (the number of bootstrap replications to compute):
In version 0.6.0 one could set r=100000 from within param_sim_sites and this overruled the global setting of r in the call to simaerep
simaerep(df_visit, param_sim_sites = list(r = 100000, poisson_test = FALSE), under_only = FALSE)
In version 0.6.1 the call:
simaerep(df_visit, param_sim_sites = list(r = 100000, poisson_test = FALSE), under_only = FALSE)
would result in simaerep using its default r (r=1000) instead of the varibale from param_sim_sites.
This can be vaioded by simply calling:
simaerep(df_visit, param_sim_sites = list(poisson_test = FALSE, r=r), r=100000, under_only = FALSE) with the newer version 0.6.1
The text was updated successfully, but these errors were encountered: