customergauge/remainder
Composer 安装命令:
composer require customergauge/remainder
包简介
Largest Remainder Method calculation
README 文档
README
This library provides a simple way to calculate percentages using the Largest Remainder Method. Learn more.
Installation
composer require customergauge/remainder
Usage
use CustomerGauge\Math\Remainder\Remainder; $remainder = new Remainder([1, 1, 1]); $remainder->round(2); // [0.34, 0.33, 0.33]
In simple terms, the goal of the Largest Remainder Method is to make sure that when calculating the weight of each seat in the data set, the aggregated percentage will not be 99.99 or 100.01.
The first example above is arbitrary and end up rounding up only the
first record so that 0.34 + 0.33 + 0.33 = 1, however not always
the decision is arbitrary.
use CustomerGauge\Math\Remainder\Remainder; $remainder = new Remainder([92, 93, 70]); $remainder->round(2); // [0.36, 0.37, 0.27]
As we can see, 0.36 + 0.37 + 0.27 = 1, however using standard
rounding, the result would have been different. To demonstrate that,
let's calculate 92 + 93 + 70 = 255. Each value takes the following
percentage of the whole:
| Value | Percentage | Round | Largest Remainder Method |
|---|---|---|---|
| 92 | 0.3607843137 | 0.36 | 0.36 |
| 93 | 0.3647058823 | 0.36 | 0.37 |
| 70 | 0.2745098039 | 0.27 | 0.27 |
As we can see from the table above, standard rounding end up
losing one percentage point because all three numbers round
down. The Largest Remainder Method will scan the values that will
be discarded (0.3607843137, 0.3647058823,
0.2745098039) and prioritize the ones with the largest
contribution. In this case, the 2nd value will discard 47058823,
which is the largest value discarded. That makes it viable for
round up to fill the gap.
The fact that 93 is also the largest value does not necessarily
have a direct connection to the option being rounded up. We can
try the same example again using a much smaller number. Take
92 + 32 + 70 = 194.
| Value | Percentage | Round | Largest Remainder Method |
|---|---|---|---|
| 92 | 0.4742268041 | 0.47 | 0.47 |
| 32 | 0.1649484536 | 0.16 | 0.17 |
| 70 | 0.3608247422 | 0.36 | 0.36 |
customergauge/remainder 适用场景与选型建议
customergauge/remainder 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 18.67k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 07 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「method」 「largest」 「remainder」 「Hare」 「Niemeyer」 「Hamilton」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 customergauge/remainder 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 customergauge/remainder 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 customergauge/remainder 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Trunkrs Shipping Method Plugin for Magento 2
paysafecard PHP REST API Library
An easy way to parse and manipulate identifier names, such as dynamic method names.
Get information about the current HTTP request
PHP Implementation of the Largest Area Fit First (LAFF) 3D (three dimension) box packing algorithm
Multi FormRequest For Laravel
统计信息
- 总下载量: 18.67k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 13
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-07-13