Closed yjml closed 2 months ago
Just noting that I've seen this! Related to #655. Will revisit next time I'm making a sweep through broom issues. :)
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue.
As per title,
tidy.boot(..., conf.method = "norm")
will error on any boot object that does not have exactly two results, since apparently that was hardcoded https://github.com/tidymodels/broom/blob/7f3d795c8e52229edba0776993c3cdea5d687b0b/R/boot-tidiers.R#L119Additionally, the rows/columns of the 2x2 confidence interval matrix are also incorrectly transposed, i.e. in the example below, the result should be (-0.0901, 0.2716) and (-0.294, 0.0794). Should be a
rbind
and not acbind
I believe?