I am trying to run a multinomial regression on FIFA data. I am trying to predict position based off player attributes. When attempting to set my baseline with the command base = relevel(fifa19$Position, ref = 'ST')
, I get the error:
Error in relevel.default(fifa19$Position, ref = "ST") : 'relevel' only for (unordered) factors
I thought that positions ARE unordered. Is this not the case or am I missing something else?