79478250

Date: 2025-03-01 20:49:19
Score: 1.5
Natty:
Report link

When changing the sign of the estimate, I also wanted to reverse the confidence intervals (CIs). Below is the code:

modify_table_body(
  ~.x %>%
  dplyr::mutate(
    estimate = -estimate,
    temp = conf.low,
    conf.low = -conf.high,
    conf.high = -temp
  ) %>%
  dplyr::select(-temp)
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Edgar Munoz