2017 © Pedro Peláez
 

library numphp

Numphp is a PHP package for statitical computations

image

girishk/numphp

Numphp is a PHP package for statitical computations

  • Thursday, July 19, 2018
  • by Girish-K
  • Repository
  • 1 Watchers
  • 1 Stars
  • 161 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 92 % Grown

The README.md

Num PHP

This module allows you to calculate mean, standard deviation, Z-score, percentile, sten and stanine., (*1)

Installation

  1. Run, (*2)

    composer require girishk/numphp --dev
    

    in console to install this module (Notice --dev flag - it's recommended to use this package only for development)., (*3)

  2. If you use Laravel < 5.5 open config/app.php and in providers section add:, (*4)

    'providers' => array(
        // ...
        Girishk\Providers\NumphpServiceProvider::class,
    )
    
    'aliases' => array(
        // ...
        'Numphp' => Girishk\Facades\Numphp::class,
    )
    

    Laravel 5.5 uses Package Auto-Discovery and it will automatically load this service provider so you don't need to add anything into above file., (*5)

    If you are using Lumen open bootstrap/app.php and add:, (*6)

    $app->register(Girishk\Providers\NumphpServiceProvider::class);
    $app->alias('Numphp', Girishk\Facades\Numphp::class);
    

The Versions

19/07 2018

dev-master

9999999-dev

Numphp is a PHP package for statitical computations

  Sources   Download

MIT

by Girish Kapileswarapu

php mean standard deviation percentile zscore sten stanine

19/07 2018

v1.1

1.1.0.0

Numphp is a PHP package for statitical computations

  Sources   Download

MIT

by Girish Kapileswarapu

php mean standard deviation percentile zscore sten stanine

03/05 2018

dev-develop

dev-develop

Numphp is a PHP package for statitical computations

  Sources   Download

MIT

by Girish Kapileswarapu

php mean standard deviation percentile zscore sten stanine

20/02 2018

v1.0

1.0.0.0

Numphp is a PHP package for statitical computations

  Sources   Download

MIT

by Girish Kapileswarapu

php mean standard deviation percentile zscore