本文介绍 django.db.models.functions.PercentRank
的用法。
声明
class PercentRank(*expressions, **extra)
计算框架子句中行的百分位排名。此计算等效于评估:
(rank - 1) / (total rows - 1)
下表解释了行的百分等级的计算:
排 # | 值 | 秩 | 计算 | 百分比排名 |
---|---|---|---|---|
1 | 15 | 1 | (1-1)/(7-1) | 0.0000 |
2 | 20 | 2 | (2-1)/(7-1) | 0.1666 |
3 | 20 | 2 | (2-1)/(7-1) | 0.1666 |
4 | 20 | 2 | (2-1)/(7-1) | 0.1666 |
5 | 30 | 5 | (5-1)/(7-1) | 0.6666 |
6 | 30 | 5 | (5-1)/(7-1) | 0.6666 |
7 | 40 | 7 | (7-1)/(7-1) | 1.0000 |
相关用法
- Python Sympy Permutation.list()用法及代码示例
- Python Sympy Permutation.rank_nonlex()用法及代码示例
- Python Sympy Permutation.next_lex()用法及代码示例
- Python Sympy Permutation.is_odd()用法及代码示例
- Python Sympy Permutation.support()用法及代码示例
- Python Sympy Permutation.runs()用法及代码示例
- Python Sympy Permutation.signature()用法及代码示例
- Python Sympy Permutation.max()用法及代码示例
- Python Sympy Permutation.mul_inv()用法及代码示例
- Python Sympy Permutation.unrank_nonlex()用法及代码示例
- Python Sympy Permutation.is_Empty()用法及代码示例
- Python Sympy Permutation.is_Identity()用法及代码示例
- Python Sympy Permutation.random()用法及代码示例
- Python Sympy Permutation.rmul_with_af()用法及代码示例
- Python Sympy Permutation.unrank_lex()用法及代码示例
- Python Sympy Permutation.transpositions()用法及代码示例
- Python Sympy Permutation.rmul()用法及代码示例
- Python Sympy Permutation.next_trotterjohnson()用法及代码示例
- Python Sympy Permutation.is_even()用法及代码示例
- Python Tableau PersonalAccessTokenAuth用法及代码示例
- Python Sympy Permutation.order()用法及代码示例
- Python Sympy Permutation.length()用法及代码示例
- Python Sympy Permutation.unrank_trotterjohnson()用法及代码示例
- Python Sympy Permutation.parity()用法及代码示例
- Python Sympy Permutation.rank()用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.db.models.functions.PercentRank。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。