Skip to main content

A generalized mosaic plotting function for categorical and numerical data.

Project description

Mosaiq

The Mosaiq library introduces mosaiq as a Python function that generates a mosaic plot using Altair, supporting both categorical and numeric fields. This versatile visualization tool automatically bins numeric data and consolidates low-frequency categories into a single "TOP_NA" group. The plot is designed to provide a clear overview of the distribution and relationship between two fields, with customizable color schemes.

Features

  • Automatic Binning for Numeric Data: Uses histogram binning for numeric fields based on a specified maximum number of bins.
  • Top-N Categories for Categorical Data: Keeps only the most frequent categories (up to max_bins), combining all others into a "TOP_NA" bin.
  • Customizable Color Scheme: A single color parameter controls the color scheme for both fields, allowing a unified look across all bins.
  • Tooltip Support: Hovering over bins displays detailed information, including category labels and counts.

Dependencies

Installation

Install the required Python packages with:

pip install mosaiq 

Usage

Function Signature

mosaiq(dataframe: FrameT, field1: str, field2: str, max_bins=6, color="category20")

Parameters

  • dataframe (FrameT): A pandas DataFrame containing the data to be visualized.
  • field1 (str): Name of the first field (categorical or numeric) to display on the x-axis.
  • field2 (str): Name of the second field (categorical or numeric) to display as blocks within the mosaic.
  • max_bins (int, optional): Maximum number of bins or categories to display. Defaults to 6.
  • color (str, optional): Color scheme for all bins. Defaults to "category20".

Returns

  • altair.Chart: A compound Altair chart representing the mosaic plot.

Example Usage

import pandas as pd
import narwhals as nw
from mosaiq import mosaiq

# Create a sample DataFrame
data = {
    "Category": ["A", "B", "C", "D", "E", "F", "G", "H"],
    "Value": [10, 15, 7, 30, 45, 10, 22, 5]
}
df = pd.DataFrame(data)

# Generate a mosaic plot
chart = mosaiq(df, "Category", "Value", max_bins=5, color="blueorange")
chart.display()

Customization

  • Adjust Binning: Control the number of bins for numeric fields with max_bins. If more categories than max_bins are present, the function groups the least frequent categories into a new "TOP_NA" category.
  • Color Scheme: Set a color scheme using any valid Altair color scheme name (e.g., "blues", "viridis", "category10"). This single color parameter unifies the plot’s appearance.

Additional Notes

This function is decorated with @nw.narwhalify to handle non-pandas DataFrame input using Narwhals typing. If you’re unfamiliar with Narwhals, check out the Narwhals GitHub repo for further information.

License

MIT License. See LICENSE for more information.


Enjoy exploring your data with Mosaiq!

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

mosaiq-0.3.1-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file mosaiq-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: mosaiq-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mosaiq-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8961a3b864ef433823ddef7ac8159b148fc55f8e34b05aa684789a2c2f1dfa54
MD5 b33f65b91a6ddb45308cafc984601d7f
BLAKE2b-256 7676fe09fa3596318b479ced66a57071c8234a3ce452ddcd09912ed2fa2efa67

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