Closed schuemie closed 1 month ago
Statements like these throw errors when data is a tibble.
tibble
Still a problem, but the offending code has moved here:
if (any(is.infinite(data[, column]))) {
throws an error because data[, column] returns a vector if data is a data frame, but a tibble if data is a tibble.
data[, column]
Statements like these throw errors when data is a
tibble
.