ModelOriented / ingredients

Effects and Importances of Model Ingredients
https://modeloriented.github.io/ingredients/
GNU General Public License v3.0
37 stars 18 forks source link

warnings generated by `class(new_observation) != "data.frame"` #115

Closed pbiecek closed 4 years ago

pbiecek commented 4 years ago

replace with

"data.frame" %in% class(new_observation)

which is faster than

any("data.frame" == class(new_observation))
pbiecek commented 4 years ago

but is.data.frame is even faster

pbiecek commented 4 years ago

fixed in e72546e