Metadata-Version: 2.2
Name: BezierInterpolate
Version: 0.0.1
Summary: A small package to fill missing values using Bezier Interpolation
Author-email: Habil <habilamar@gmail.com>
Project-URL: Homepage, https://github.com/HabilAmardias/BezierInterpolate
Project-URL: Issues, https://github.com/HabilAmardias/BezierInterpolate/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas==2.2.3

A small package to fill missing values using Bezier Interpolation.

Installation:

```
pip install BezierInterpolate
```

Usage:

```python
from BezierInterpolate.interpolate import bezier

imputed = bezier(df) #df is pandas DataFrame or pandas Series
```
