commit | 6ebd751e49c84763545596296bdb578ca6cb09d2 | [log] [tgz] |
---|---|---|
author | Marc Kupietz <kupietz@ids-mannheim.de> | Sat Oct 05 18:21:49 2019 +0200 |
committer | Marc Kupietz <kupietz@ids-mannheim.de> | Sat Oct 05 18:21:49 2019 +0200 |
tree | 932aaf20092ff3e37db1a0ed97973a2f442428de | |
parent | a99f1742536787707dc8719c3e08eef3279ddeab [diff] [blame] |
Avoid tidyselect import in ci Change-Id: I62c39fa82cdcc6ffc8dcbe46e9067bd6ab3cb2a5
diff --git a/R/ci.R b/R/ci.R index fff68f0..b5d06dc 100644 --- a/R/ci.R +++ b/R/ci.R
@@ -35,7 +35,7 @@ df %>% rowwise %>% mutate(tst = list(broom::tidy(prop.test(!!x, !!N, conf.level = conf.level)) %>% - select("estimate", starts_with("conf.")) %>% + select("estimate", "conf.low", "conf.high") %>% rename(f = estimate) )) %>% tidyr::unnest(tst)