Metadata-Version: 2.4
Name: radarchart-py
Version: 0.1.7
Summary: RadarChart: A Python library for customizable radar charts (spider plots)
Home-page: https://github.com/sabirribas/radarchart
Author: Sabir Ribas
Author-email: sabirribas+pypi@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
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: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

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

## How to use it

**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)
