Metadata-Version: 2.1
Name: common_stats_vishishta
Version: 0.0.1
Summary: A simple library for basic statistical calculations
Author: Vish
Author-email: pVishishta@gmail.com
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Simple Stats

A simple Python library for basic statistical calculations.

## Features

- Calculate mean
- Calculate median
- Calculate mode
- Calculate standard deviation

## Installation

You can install the library using pip:

bash
pip install .

## Usage
from common_stats import mean, median, mode, standard_deviation

data = [1, 2, 3, 4, 5]
print("Mean:", mean(data))
print("Median:", median(data))
print("Mode:", mode(data))
print("Standard Deviation:", standard_deviation(data))
create one more file USAGE.md . We will use this show to library discription in pypi.

# Usage

To use the `common_stats` package, you can utilize its various statistical functions such as `mean`, `median`, `mode`, and `standard_deviation`. Below is a quick example demonstrating how to use these functions.

## Example Code

python
from common_stats import mean, median, mode, standard_deviation

data = [1, 2, 3, 4, 5]

print("Mean:", mean(data))
print("Median:", median(data))
print("Mode:", mode(data))
print("Standard Deviation:", standard_deviation(data))
