Python library written on top of matplotlib library for customizable proportional charts
Project description
Matprops
matprops is a Python library for visualizing proportional data. It is build above matplotlib (the visualization library). Understanding proportional data is quite easy but when it comes to bigger picture we lack of seeing everything
Installation
Binary installers for the latest released version are available at the Python Package Index (PyPI)
# PyPI
pip install matprops
The source code is currently hosted on GitHub
Area proportional chart
Area proportional charts also known as square area proportional charts is a very easy and basic proportional chart to know first in list. matprops provide a lage amount of customization in creating square area proportional charts
# Pandas - DataFrame Support
import pandas as pd
# Matprops
from matprops import props
props is a subclass doing its work for simple proportional charts
# Creating a dataframe with the help of pandas
dataset = pd.DataFrame(
{
'Country': ['France', 'Germany', 'United Arab Emirates'],
'Men (%)': [60, 80, 30],
'Capital': ['Paris', 'Berlin', 'Mecca']
}
)
# Changing the limits
# Limit : 0 -> 1
dataset["Men (%)"] = dataset["Men (%)"]/100
Reducing the limits is mandatory as the matprops is all about proportional charts we need to get the value down to 0 -> 1 range. Ignoring the limits may cause unexpected warnings and errors
Simple square area proportional charts are capable of showing some insights through this data
pt.AreaProp(dataset, "Men (%)", labels=True, title="Country", description="Capital")
Try customizing the graph with everything possible
matprops provides fast and reliable data visualizations for proportional data. matprops currently work only for labelled data for which it is found to be more helpful in defining proportions. matprops aims to move more than proportional charts in upcoming versions. We have enough proportional chart libraries around the Python community, but the thing that differs matprops is its creativity and customization. Some rare visualizations are about to be worked on matprops soon
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file matprops-1.0.2.tar.gz
.
File metadata
- Download URL: matprops-1.0.2.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a11aed81cd6031c594f9ea7c9dd8223d8c1ddae0cd8c1b6390f116f6b1b82ce |
|
MD5 | 81c063abdbde0e8db3225f2b5ec9a5bd |
|
BLAKE2b-256 | e491185d9845a82971960fb1a3435ef6bb870a05da6de21006c25db27de68504 |
File details
Details for the file matprops-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: matprops-1.0.2-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2dc9cee17c96bce7424e61db29b5820d7742daf2cf9966024abed82c19dbf04 |
|
MD5 | b12d443517074b7613fa958590fef58f |
|
BLAKE2b-256 | f4d57b382f4d4838ffd38729afe6b32855940f6443b325199a7a70e30fbfd605 |