Metadata-Version: 2.1
Name: pybigdata
Version: 0.0.1
Summary: This python library will eat pigdata.
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS.md

# PyBigData

## Overview

PyBigData is a Python library for doing amazing things. It provides mathematical functionalities and methods related to Big Data, Machine Learning, Artificial Inteligence, Optimization, Probabilities, Statistics and Linear Algebra

## Table of Contents

- [Installation](#installation)
- [Usage](#usage)
- [Documentation](#documentation)
- [Contributing](#contributing)
- [Issues](#issues)
- [License](#license)

## Installation

You can install PyBigData using `pip`:

```bash
pip install pybigdata
```

## Usage

This is a simple example of how to use this library:

```python
from pybigdata import linear_algebra as LA

data = [[1,2,3],[4,5,6],[7,8,9]]

A = LA.Matrix(data)

print(f"Determinant: {A.det()}")

```

For more examples and detailed usage, refer to the [documents](https://github.com/AlirezaSheikhiy/pybigdata/tree/main/docs).

## Contributing

We welcome contributions! If you want to contribute to the project, please check the Contribution Guidelines.

## Issues

If you encounter any issues or have suggestions, please open an [issue](https://github.com/AlirezaSheikhiy/pybigdata/issues) on GitHub.

## License

This project is licensed under the MIT License. See the [License](https://github.com/AlirezaSheikhiy/pybigdata/blob/main/LICENSE) file for details.
