Joey Couse
Joey Couse
Would love to see Catboost on CRAN! If Catboost was on CRAN it would be much more feasible for other developers to use it in other packages and provide integration...
Random lurker here, but just my general thoughts. Having the ability to apply `.when` non-globally would be the best drop in replacement for `if_else()` IMO. I understand that probably isn't...
> Your third example with `.when = is.na(a)|b == "truck"|c mutate(a = if_else(is.na(a), 0, a), b = if_else(b == "truck", "pick-up", b), c = if_else(c < 100, c * 10,...
> just out of curiosity (and not understanding the underlying mechanics) why is this implemented as an argument `.when` rather than a dplyr function `when(...)` more akin to `across()`? >...
Hmm, based on this comment I would assume the intention is to return `y` as a matrix if it is possible. Right now there doesn't seem to be a case...
@topepo this is comes up when there is a call to `.covert_form_to_xy_fit()` i.e. where the underlying model only has a `x_y` interface. The return value of `y` is always a...
@topepo @simonpcouch I've updated the PR to only pass freq weights to the internal validation set. This is done by delaying the conversion of the weights to numeric/integer till pass...
Assuming the issue I am encountering here is related this bug. I'm getting the same `sprintf` error as mentioned above. ``` r library(gt) library(dplyr) #> #> Attaching package: 'dplyr' #>...
The only function I'm aware of that achieves something similar is the `ggplot2::ggplot_build()` which accepts a plot object and returns a dataframe of the plot data. Although the returned dataframe...