Rank Order Regression – Regression with Rank Order as Dependent Variable

multiple regressionordinal-datarankingregression

I have data on 44 firms that have all been ranked by an expert. The "best" firm has rank 1, the second best has rank 2, …, the last one has rank 44.
I have a bunch of explanatory variables and would like to explain the rank of the firm on the basis of these variables. My inclination is to use a regression model, but am concerned about the fact that the dependent variable is limited, it can only be a positive discrete number.

I have thought about ordinal regression, but that seems impossible since I would have as many categories as I have observations.

What regression models would be possible? (preferably to be run in R)

Best Answer

Ordinal regression is ideal for this problem in my opinion. There is no problem other than computational burden caused by having as many unique $Y$ as there are observations. The R rms package's orm function solves the computational burden problem using a special sparse matrix representation. For an example see Which model should I use to fit my data ? ordinal and non-ordinal, not normal and not homoscedastic

Related Question