Odpowiedź udzielona przez @ fabian-werner jest świetna, ale obiekty mogą mieć wiele klas, a „czynnik” niekoniecznie musi być pierwszym zwracanym przez class(yes)
, więc proponuję tę małą modyfikację, aby sprawdzić wszystkie atrybuty klas:
safe.ifelse <- function(cond, yes, no) {
class.y <- class(yes)
if ("factor" %in% class.y) { # Note the small condition change here
levels.y = levels(yes)
}
X <- ifelse(cond,yes,no)
if ("factor" %in% class.y) { # Note the small condition change here
X = as.factor(X)
levels(X) = levels.y
} else {
class(X) <- class.y
}
return(X)
}
Wysłałem również prośbę do zespołu R Development o dodanie udokumentowanej opcji zachowania atrybutów base :: ifelse () na podstawie wyboru przez użytkownika, które atrybuty mają być zachowane. Żądanie jest tutaj: https://bugs.r-project.org/bugzilla/show_bug.cgi?id=16609 - zostało już oflagowane jako „WONTFIX”, ponieważ zawsze było tak, jak jest teraz, ale przedstawiłem kolejny argument wyjaśniający, dlaczego proste dodanie może zaoszczędzić wielu użytkownikom języka R ból głowy. Być może twoje „+1” w tym wątku błędu zachęci zespół R Core do ponownego przyjrzenia się.
EDYCJA: Oto lepsza wersja, która pozwala użytkownikowi określić, które atrybuty mają być zachowane: „cond” (domyślne zachowanie ifelse ()), „tak”, zachowanie zgodnie z powyższym kodem lub „nie” w przypadkach, gdy atrybuty wartości „nie” są lepsze:
safe_ifelse <- function(cond, yes, no, preserved_attributes = "yes") {
# Capture the user's choice for which attributes to preserve in return value
preserved <- switch(EXPR = preserved_attributes, "cond" = cond,
"yes" = yes,
"no" = no);
# Preserve the desired values and check if object is a factor
preserved_class <- class(preserved);
preserved_levels <- levels(preserved);
preserved_is_factor <- "factor" %in% preserved_class;
# We have to use base::ifelse() for its vectorized properties
# If we do our own if() {} else {}, then it will only work on first variable in a list
return_obj <- ifelse(cond, yes, no);
# If the object whose attributes we want to retain is a factor
# Typecast the return object as.factor()
# Set its levels()
# Then check to see if it's also one or more classes in addition to "factor"
# If so, set the classes, which will preserve "factor" too
if (preserved_is_factor) {
return_obj <- as.factor(return_obj);
levels(return_obj) <- preserved_levels;
if (length(preserved_class) > 1) {
class(return_obj) <- preserved_class;
}
}
# In all cases we want to preserve the class of the chosen object, so set it here
else {
class(return_obj) <- preserved_class;
}
return(return_obj);
} # End safe_ifelse function
if_else()
pakiecie dplyr jest teraz funkcja , która może zastąpićifelse
, zachowując poprawne klasy obiektów Date - została opublikowana poniżej jako ostatnia odpowiedź. Zwracam na to uwagę, ponieważ rozwiązuje ten problem, udostępniając funkcję, która jest przetestowana jednostkowo i udokumentowana w pakiecie CRAN, w przeciwieństwie do wielu innych odpowiedzi, które (jak w tym komentarzu) były przed nim.