After recoding a categorical variable (either with 'recode' or If) in JMP 18 pro, the old category “Either” still appears in the results — especially in the Odds Ratio output of a logistic regression — even though no rows in the new column contain that value anymore.
It seems JMP continues to recognize “Either” as an existing level of the variable, and there is no visible option to actually delete or remove it from the column properties.
How can I completely remove or drop this unused category so that it no longer appears in the analysis output?
formula ex.
If( :Preferred drainage == "1",
"0",
If( :Preferred drainage == "2",
"1",
""
)
)