The h-index is the largest number h such that h publications have at least h citations each. Sort your papers by citation count descending, then find the row where the rank exceeds the citation count. If you have 8 papers and the top 5 each have 5+ citations, your h-index is 5.
- Sort all papers by citation count from highest to lowest
- Walk down the list: paper 1 needs 1+ citation, paper 2 needs 2+, etc.
- Stop when citation count < rank position
- That rank minus one is your h-index
- Example: citations [45, 32, 18, 12, 8, 5, 3, 1] gives h-index = 5
| Rank | Citations | Rank <= Citations? | h-index Status |
|---|---|---|---|
| 1 | 45 | Yes (45 >= 1) | h >= 1 |
| 2 | 32 | Yes (32 >= 2) | h >= 2 |
| 3 | 18 | Yes (18 >= 3) | h >= 3 |
| 4 | 12 | Yes (12 >= 4) | h >= 4 |
| 5 | 8 | Yes (8 >= 5) | h = 5 |
| 6 | 5 | No (5 < 6) | Stop here |