I'm working on something like the following problem. I have a bunch of users and N books. Each user creates an ordered ranking of all the books he's read (which is likely a subset of the N books), e.g., Book 1 > Book 40 > Book 25.
Now I want to turn these individual user rankings into a single ordered ranking of all the books.
Are there any good or standard approaches to try? So far, I'm thinking of Bradley-Terry models applied to pairwise comparisons, but I'm wondering if there's anything else.