Registry / data / matviz

matviz

JSON →
library1.0.6pypypi✓ verified 80d ago

matviz provides simple matrix data visualization tools built on matplotlib and numpy. Current version 1.0.6 supports Python >=3.10. Development appears intermittent with no recent releases since v1.0.0 (July 2023).

pip install matviz
INSTALL
IMPORT
SIG · MATVIZ
M
matviz
datapythonv1.0.6
Install
19.6s avg
Import
Disk
509MB
Pass rate
5/ 10
Env Coverage5 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v1.0.6 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
build_error
glibc
py 3.103.95 runs
installs and imports cleanly · install 19.6s · import 0.000s · 490MB
509MB installed
● package 509MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

plot_matrix
import matviz
from matviz import plot_matrix

Create a basic matrix heatmap with matviz.

import numpy as np from matviz import plot_matrix data = np.random.rand(5,5) fig, ax = plot_matrix(data, title='My Matrix') import matplotlib.pyplot as plt plt.show()
Debug
Known issues
gotchaplot_matrix returns a figure and axes tuple, not just a figure. Unpack with fig, ax = plot_matrix(...) to avoid AttributeError.
fix
Use fig, ax = plot_matrix(data) instead of fig = plot_matrix(data).
affects: all
gotchaThe library relies on matplotlib's interactive backend. If running in a headless environment, set matplotlib backend to 'Agg' before importing matviz.
fix
import matplotlib; matplotlib.use('Agg') before import matviz.
affects: all
deprecatedFunctions like heatmap and correlation_plot from early versions (pre-1.0.0) are deprecated. Use plot_matrix instead.
fix
Upgrade to 1.0.0+ and use plot_matrix.
affects: <1.0.0
Upgrade
Version history
1.0.6latest on PyPI · released Mar 1, 2026
Audit
Dependencies
matplotlibrequiredPlotting backend
numpyrequiredArray operations
Agent activity
2 hits · last 30 days
node
2
Resources
matviz — pip install matviz · libregistry