h_index | R Documentation |
Calculate H-Index from the number of game plays. H-Index measures the experience of a player based on reported play counts. It rises only when one plays many different games multiple times. It tries to distinguish players who play a few games really often and these who try every game once and leave it on the shelf from those who have the broad collection of high-count plays.
h_index(num_plays)
num_plays |
a numeric vector of non-negative integers. |
A single non-negative integer.
H-Index in Wikipedia BoardGameGeek thread about H-Index
h_index(0)
h_index(c(0, 0, 1, 2, 1))
h_index(c(2, 2, 5, 100))
h_index(c(2, 3, 5, 100))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.