我在数据框中有一列设置为具有 4 个级别的因子
False, FALSE, True, TRUE
我需要减少到2个级别
FALSE, TRUE
我已经这样做了(效果很好)但是有没有更好的方法:
df$col1 <- as.character(df$col1) # change the factor to chr
df$col1 <- toupper (df$col1) # Ensure all are uppercase
df$col1 <- as.factor(df$col1) # change back