I have a question relative to R dplyr filter function. I have a tibble data1 with several columns, and I would like to remove all rows where the the column "CODE_FRAIS" is filled with the code "CINT". My code to do so is :
data1 <- data1 %>% filter(CODE_FRAIS != "CINT")
But doing so, the filtered table returns only 0 for all numeric columns. And I don't understand why. And it's driving me crazy. Especially because this methodology usually works fine. Does anyone has an idea of what is going on here (and please, other than those involving my intellect ^^) Thank you very much in advance !