In purrr version 0.2.4 I see that is_numeric() is deprecated:
is_numeric
function (x)
{
warning("Deprecated", call. = FALSE)
is_integer(x) || is_double(x)
}
<environment: namespace:purrr>
the reason is not clear to me and I was wondering what is the alternative suggested