8
Sostituisci un valore in un data frame in base a un'istruzione condizionale ("if")
Nel frame di dati R codificato per sotto, vorrei sostituire tutte le volte che B appare con b. junk <- data.frame(x <- rep(LETTERS[1:4], 3), y <- letters[1:12]) colnames(junk) <- c("nm", "val") questo fornisce: nm val 1 A a 2 B b 3 C c 4 D d 5 A e …