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".
  • top_na_label (str, optional): Provide a custom label for category bins that do not pass max_bins threshold.

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.2-py3-none-any.whl (6.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mosaiq-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 6.1 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e7e288df7ba60297bc5029f3c3615aac1a5cf14edda1c847ee4b594a72d7c57c
MD5 71e817ee1204f719e3f4b5fa2d048bb9
BLAKE2b-256 3f9ccd98bb137da42c7e87504cd135a1758607faddb320b430309fcc8fee969d

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