I want to specify that a select column has no missing values. Any other column can have missing values except this one. The column I will call 'Iteration'. Here is my code:
df = na.omit(df, cols = "Iteration")
This is a column of strings (ex: different division names for my dataset).
This returns an empty dataframe for some reason. Can someone catch my mistake?