Is there an advantage to ordering a categorical variable?
I have been advised that it is best to order categorical variables where appropriate (e.g. short less than medium less than long). I am wondering, what is the specific advantage of treating a categorical variable as ordered as opposed to just simple categorical, in the context of modelling it as an explanatory variable? What does it mean mathematically (in lay terms preferably!)? Many thanks! Among other things, it allows you to compare values from those factors: > ord.fac <- ordered(c("small", "medium", "large"), levels=c("small", "medium", "large")) > fac <- factor(c("small", "medium",