I simply want to coerce as numbers --i.e., to apply as.numeric
to--any columns which have a 1
as their first entry (i.e., a character). So I would expect to turn:
tibble(a = c("1", "2"), b = c("Fred", "Kevin"), c = 1:2)
into
tibble(a = 1:2, b = c("Fred", "Kevin"), c = 1:2)