Skip to main content

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

Output

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

matprops-1.0.4.1.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

matprops-1.0.4.1-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file matprops-1.0.4.1.tar.gz.

File metadata

  • Download URL: matprops-1.0.4.1.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for matprops-1.0.4.1.tar.gz
Algorithm Hash digest
SHA256 bdb1ed6b488845db78180e52f37f217b7ba35ee40bd9592cf9e095609d4e1f3b
MD5 d9913949f03fdd93015dcfcd8239a4a2
BLAKE2b-256 5d6212a91ce7f4f7710baf0f5cb57065f6ca7410aa8fc737254625dae5919143

See more details on using hashes here.

File details

Details for the file matprops-1.0.4.1-py3-none-any.whl.

File metadata

  • Download URL: matprops-1.0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 5.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for matprops-1.0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 69ec89388b4f749a505814a0e1be7887108544b017b369922bd24f8b5d8ce009
MD5 68ef3a7409595a6e0fbba316fd6f9074
BLAKE2b-256 1e7b88d12a9e02a8ca95563c5513344450ad7b4127a8a08019b1e1fed1ad5ebe

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page