Metadata-Version: 2.4
Name: radarchart-py
Version: 0.2.0
Summary: RadarChart: A Python library for customizable radar charts (spider plots)
Author-email: Sabir Ribas <sabirribas+pypi@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/sabirribas/radarchart
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
Requires-Dist: altair>=5.5.0
Requires-Dist: matplotlib>=3.9.2
Requires-Dist: streamlit>=1.44.0
Dynamic: license-file

# RadarChart
A Python library for creating customizable radar charts (spider plots).

## How to install

```bash
pip install radarchart-py
```

## How to use

**Step 1**: Import the `radarplot` library.

```py
import radarchart
```

**Step 2**: Prepare the dataframe.

```py
df = radarchart.example_dataframe()
df
```

![example-df](https://github.com/user-attachments/assets/71fff230-e6b9-453a-8ab0-ea4ed634bfc1)

**Step 3**: Plot the chart.

```py
radarchart.plot(df, norm_max=True)
```

![example-plot](https://github.com/user-attachments/assets/32ff7a41-f1c7-47ec-9927-087bf0dba818)
