poissonconsulting / shinyssdtools

Shiny interface to ssdtools R package
https://bcgov.github.io/shinyssdtools/
Apache License 2.0
0 stars 0 forks source link

ssd_hc now causing error with multi_ci arg #25

Closed sebdalgarno closed 1 week ago

sebdalgarno commented 3 months ago

the offending code:

  ssdtools::ssd_hc(x, proportion = percent / 100, nboot = 10L, min_pboot = 0.8, multi_est = TRUE, multi_ci = FALSE)$est

the warning is Warning: Error in ssd_hc.fitdists:...must be unused.

I think this used to work previously because multi_ci was silently passing through and not used

what is the correct ci_method to use? this is just to get the estimate and not the bootstrapped CI

sebdalgarno commented 3 months ago

using default for now ("weighted_samples")

joethorley commented 3 months ago

Yes if just getting the estimate the CI doesn't matter. I would just drop

multi_ci = FALSE as no longer correct and also drop multi_est = TRUE as now the default (and will eventually become the only option)

sebdalgarno commented 1 week ago

done