Download the PHP package handybitesize/distributed-random without Composer
On this page you can find all versions of the php package handybitesize/distributed-random. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download handybitesize/distributed-random
More information about handybitesize/distributed-random
Files in handybitesize/distributed-random
Package distributed-random
Short Description Generate random numbers from a range with a normal distribution. Allows skewing and rounding.
License MIT
Homepage https://github.com/handybitesize/distributed-random
Informations about the package distributed-random
DistributedRandom
Normally distributed random values for PHP
DistributedRandom allows you generate random values within a range enforcing normal distribution rahter than the uniform distribution rand() et al will give you.
Disclaimer. This may not be real math(s). I use it when generating random objects for testing. For example if I want to generate 2000 users in one of 4 user permission groups, if I randomise the user permission_group_id I can expected roughly 500 users in each. However I usually want the majority of generated users to be in the less permissive groups and only a few "admins" created. This library lets you do that by randomisng with a large skew towards the lower end.
You can see the sort of distributions in the demo script
Setup
Add the library to your composer.json
file in your project:
Use composer to install the library:
Composer will install DistributedRandom inside your vendor folder. Then you can add the following to your .php files to use the library with Autoloading.
Alternatively, use composer on the command line to require and install DistributedRandom:
Minimum Requirements
- PHP 5.3
Usage
Unit Tests
To follow!
License
Licensed under the MIT License.