You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at the the base::range.default function, it seems that concatenating NULL with an integer64 vector causes weird casting behaviour. This doesn't happen using the vctrs::vec_c() function for example.
Currently,
train_continuous()
gives nonsensical ranges for integer64 input.Looking at the the
base::range.default
function, it seems that concatenating NULL with an integer64 vector causes weird casting behaviour. This doesn't happen using thevctrs::vec_c()
function for example.Created on 2022-11-05 by the reprex package (v2.0.1)
There are a few options to prevent this. In the following line
scales/R/scale-continuous.r
Line 49 in f7056ad
The input can be pre-combined:
The input can be coerced to numeric:
Or can be branched depending on the 'null'-ness of
existing
.The text was updated successfully, but these errors were encountered: