GithubHelp home page GithubHelp logo

php-largest-remainder-method's Introduction

Largest Remainder Method โž—

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

php-largest-remainder-method's People

Contributors

deleugpn avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

php-largest-remainder-method's Issues

Floats!

Hey there,
trying this with floats could be an improvement, what do you say?

Argument 2 passed to CustomerGauge\Math\Remainder\Definition\NumberFactory::make() must be of the type int or null, float given - on the other side, it's just comfortable, not at all needed ๐ŸฆŠ

formatting numbers

Hey there,
passing this array [67, 26, 5, 2, 1] I get back [0.66, 0.26, 0.05, 0.02, 0.01] - It'd be nice if numbers were formatted the same way, but again, just a suggestion ..

Thanks for this great library!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.