Ranking collection
Project description
This library provides Ranking iterator to assign rank to each values and various strategies for assigning rankings.
>>> sorted_scores = [100, 90, 90, 80, 70] >>> for rank, score in Ranking(sorted_scores): ... print '%d. %d' % (rank + 1, score) 1. 100 2. 90 2. 90 4. 80 5. 70 >>> for rank, score in Ranking(sorted_scores, DENSE): ... print '%d. %d' % (rank + 1, score) 1. 100 2. 90 2. 90 3. 80 4. 70
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ranking-0.2.tar.gz
(2.6 kB
view details)
File details
Details for the file ranking-0.2.tar.gz
.
File metadata
- Download URL: ranking-0.2.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a604fa9de8b530ea5c039d1cafefbdfd296f15909f6121aa398b44cb873c1e9 |
|
MD5 | 18aa04cd6dc076b1bbd0b3bcf296483f |
|
BLAKE2b-256 | 9dd0a680a899216da0b119ce5e2eda92a70bf7d925cf638096b77294fe8aa6c2 |