I was given some data that represents the number of lines in a document as well as the line count per hour (which is the lines in the document divided by the number of hours that the document was worked on). Considering the following data:
lines LCPH
57 133
62 135
33 137
76 139
78 141
Typically, I would express the median LCPH as 137 as it is the 3rd of 5 figures. However, the median is currently being reported as 139 because it is not until the fourth document that more than half the lines in all documents were seen.
This figure is currently being referred to as the Weighted Median LCPH instead of Median LCPH.
Is there a different term for this sort of figure?
Another way of thinking about this - one that doesn't generalize to arbitrary real weights as Ilmari's answer does, but one that applies to your particular problem and that has some history behind it - is the concept of a multiset median, where elements can appear multiple times; for most statistical applications this is the traditional notion of median used, since there's no guarantee that the results of statistical sampling will be distinct from each other (and often there are guarantees of just the opposite, that not all samples will be unique). Viewed from this perspective, your data isn't the set $\{133, 135, 137, 139, 141\}$ at all, but rather the multiset $\{133, 133, \ldots, 133, 135, 135, \ldots,141\}$ with each element having a multiplicity equal to the count associated with it in your table; with your data defined this way, the 'classical' notion of the median (the middle element of this set) gives the same value that you report, $139$.
As a side note (and wholly unrelated to statistical applications), these sorts of multiset medians also show up in the study of identities in Median Algebras (algebras equipped with a ternary operator representing the median); I heartily recommend checking out the 4th volume of Knuth's The Art Of Computer Programming if you're interested in finding out more about a curious little nook of computer science.