Closed IndrajeetPatil closed 5 years ago
I don't ise UQS
anywhere in my code in sjstats?
And I can't find it in my other packages that sjstats imports...
Have you checked if this is something internal in the rlang-package?
You are right, this is not coming from sjstats
, but from further upstream (broom
). Sorry, should have run traceback()
before.
But this will affect your package as well. I'll open an issue on broom
repo-
15: doWithOneRestart(return(expr), restart)
14: withOneRestart(expr, restarts[[1L]])
13: withRestarts({
.Internal(.signalCondition(cond, message, call))
.Internal(.dfltWarn(message, call))
}, muffleWarning = function() NULL)
12: warning(warningCondition(msg, old = old, new = new, package = package,
class = "deprecatedWarning"))
11: .Deprecated(msg = x)
10: list2(...)
9: recode.character(colnames(ret), rlang::UQS(renamers))
8: dplyr::recode(colnames(ret), rlang::UQS(renamers))
7: tidy.anova(s[[1]])
6: tidy.aov(model)
5: broom::tidy(model)
4: as.data.frame(broom::tidy(model))
3: aov_stat_summary(model)
2: aov_stat(model, type = type)
1: sjstats::omega_sq(fit, partial = TRUE, ci.lvl = 0.95)
I'm afraid this will affect many packages, but as broom is part of the tidyverse, I'm sure this will be fixed in time.
I am getting the following
rlang
-related warning in my package checks and I traced it back tosjstats
functions. Thiswarning
will turn intoerror
from next release ofrlang
, so it'll be good to take care of it sooner than later. Thanks.Created on 2018-11-27 by the reprex package (v0.2.1)