Release schedule #444
Replies: 14 comments 21 replies
-
Follow the "dataverse cycle" issue in easystats for where we are in the release cycles |
Beta Was this translation helpful? Give feedback.
-
Got it, thanks! |
Beta Was this translation helpful? Give feedback.
-
Ah, the I received an ominous email from Ripley saying that I need to release a new version before October 19th. (One of my tests fails at tolerance 0.000001 on the new ARM mac. Catastrophe!) |
Beta Was this translation helpful? Give feedback.
-
@strengejacke I'm not sure what your process is for updating |
Beta Was this translation helpful? Give feedback.
-
Any critical issues that need to be addressed before submitting to CRAN? Else, I might submit an insight update this week. |
Beta Was this translation helpful? Give feedback.
-
Great, you're now following @IndrajeetPatil footsteps. CRAN team already knows that every new submission of any easystats package will 99% sure break any of @IndrajeetPatil packages ;-) |
Beta Was this translation helpful? Give feedback.
-
Maybe we can add easystats/modelbased#151 (comment). I think this should be easy, and the regex stuff to detect transformations can be copied from https://github.com/strengejacke/ggeffects/blob/master/R/utils_ggpredict.R |
Beta Was this translation helpful? Give feedback.
-
Does anybody know, if I have a string |
Beta Was this translation helpful? Give feedback.
-
Nope. fun <- function(x) str2lang("log(x+2)")
# is
fun(.3)
#> log(x + 2)
# should be
log(.3 + 2)
#> [1] 0.8329091
arg <- quote(x + 1)
fun <- function(x) rlang::call2("log", arg)
fun(.3)
#> log(x + 1) Created on 2021-10-15 by the reprex package (v2.0.1) |
Beta Was this translation helpful? Give feedback.
-
Here is a working example: library(rlang)
foo <- function(x, a = 1) {
args <- list(x = quote(x + a))
eval(call2(.fn = log, !!!args))
}
foo(0.3)
#> [1] 0.2623643
log(0.3 + 1)
#> [1] 0.2623643
foo(0.3, 2)
#> [1] 0.8329091
log(0.3 + 2)
#> [1] 0.8329091 Created on 2021-10-15 by the reprex package (v2.0.1) |
Beta Was this translation helpful? Give feedback.
-
@vincentarelbundock @bwiernik @IndrajeetPatil Ok, I'm running final checks now and will submit insight today. I think we can add more features to |
Beta Was this translation helpful? Give feedback.
This comment has been hidden.
This comment has been hidden.
-
On the one hand, rev deps are kind of a pain, but on the other hand it's kind of neat that we can benefit from the test suites of downstream packages. 3ae2bd2 is another example of a minor bug that I had introduced in prior commit and which I discovered because of |
Beta Was this translation helpful? Give feedback.
-
on CRAN :-) |
Beta Was this translation helpful? Give feedback.
-
Sorry to bug you with this, but I'm curious to know if there's a plan for a next release in the near future (I see that they are quite frequent on the archive page).
I don't mean to put pressure at all. Just thinking about coordinating a release with
insight
dependency and trying to figure out which version I can require.Again, no pressure! I know releasing to CRAN can be a pain.
Beta Was this translation helpful? Give feedback.
All reactions