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.3.tar.gz
(5.1 kB
view details)
File details
Details for the file ranking-0.3.tar.gz
.
File metadata
- Download URL: ranking-0.3.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dcb748ac592a3eb43df8a51d67e6acf48f5efeeeb7d210fafc76ef645cf395bd |
|
MD5 | 523a34624a29b0d387fadb1464b73f51 |
|
BLAKE2b-256 | 51674721ecdcbcddaa524bbfc42b2215d7ee601e33b98be91a7df4711e11d1f7 |