Metadata-Version: 2.4
Name: slash-distribution
Version: 0.1.0
Summary: A Python implementation of Slash Distribution
Author: Sandeep Kumar
Author-email: your_email@gmail.com
Keywords: statistics,probability,distribution,slash distribution,machine learning
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: matplotlib
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Slash Distribution

A custom Python implementation of the Slash Distribution.

## Installation

```bash
pip install slash-distribution

## Usage

from slash_distribution import SlashDistribution

dist = SlashDistribution(mu=0, sigma=1)

print(dist.pdf(1))

print(dist.mean())

samples = dist.rvs(size=5)

print(samples)

dist.plot_pdf()
