Metadata-Version: 2.1
Name: py-GBdistribution
Version: 1.5
Summary: Gaussian and Binomial distributions package
Home-page: UNKNOWN
License: UNKNOWN
Description: py-GBdestribution is a Python package that calculates the Gaussian and Binomial distributions of input data.
        
        
        ## Quick Start
        First, install the library:
        
        ```
        $ pip install py-GBdistribution
        ```
        
        ## Example
        ```
        >>> from py_GBdistribution import Gaussian, Binomial
        >>> g = Gaussian(3, 4)
        >>> g.mean
        3
        >>> g.stdev
        4
        >>> b = Binomial(0.4, 20)
        >>> b.mean
        8.0
        >>> b.stdev
        2.1908902300206643
        ```
        
        ## Updates
        > More updates will be made soon
        
        
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
