I'm running into a problem where I have mutated a new column
lowCOXdata %>%
mutate(IL1bLoworHigh = case_when(Adjusted.Average..IL1b < 2.30 | Adjusted.Average..IL1b == NA ~ 1,
Adjusted.Average..IL1b > 2.30 ~ 2)
)
called IL1bLoworHigh in dataframe called lowCOXdata, and what's strange is that the new column is created and shown in the data viewer, but not the environment and data frame. In the data viewer, it says that the number of columns is 9, but on the right hand side in the environment the number of variables is 8. See picture below: 9 columns on the left side but only 8 variables