Skip to main content

This package is for easy, convenient plotting in Python.

Project description

MatPlus

CI/CD Coverage Docs Documentation

MatPlus is a Python package that provides easy, convenient plotting capabilities built on top of matplotlib. It simplifies the creation of common visualization types with intuitive APIs.

Installation

Install MatPlus using pip:

pip install MatPlus

Quickstart

Bar Plot

import numpy as np
from MatPlus import BarPlot

x = np.array([1, 2, 3, 4, 5])
y = np.array([10, 15, 7, 12, 9])

bar = BarPlot(x, y)
bar.plot()

Scatter Plot

from MatPlus import ScatterPlot

x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]

# Basic scatter plot
scatter = ScatterPlot(x, y)
scatter.plot()

# Scatter with custom sizes and colors
sizes = [10, 20, 30, 40, 50]
colors = [0.1, 0.5, 0.7, 0.9, 1.0]
scatter = ScatterPlot(x, y, sizes=sizes, colors=colors, vmin=0, vmax=1)
scatter.plot()

Line Plot

from MatPlus import LinePlot

# Single line plot
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
line_plot = LinePlot(x, y)
line_plot.plot()

# Multiple line plot
x = [[1, 2, 3], [1, 2, 3, 4]]
y = [[1, 2, 3], [4, 3, 2, 1]]
line_plot = LinePlot(x, y, lowerlimx=0, upperlimx=5)
line_plot.plot()

Box Plot

from MatPlus import BoxPlot

data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
box = BoxPlot(data)
box.plot()

Histogram

from MatPlus import Histogram
import numpy as np

data = np.random.normal(0, 1, 1000)
hist = Histogram(data)
hist.plot()

Documentation

For detailed API documentation, visit our documentation site.

Examples

For detailed examples of MatPlus usage in jupyter notebooks, please refer to the examples in our GitHub

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

matplus-0.1.4.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

matplus-0.1.4-py3-none-any.whl (12.8 kB view details)

Uploaded Python 3

File details

Details for the file matplus-0.1.4.tar.gz.

File metadata

  • Download URL: matplus-0.1.4.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for matplus-0.1.4.tar.gz
Algorithm Hash digest
SHA256 85985b9668e20550eadb5072765ade694f503548de0e6b33b70c7fdf7539fa14
MD5 afef37f091a612862d8320102688ad1b
BLAKE2b-256 fe309d4d0d0ecef99e8df6cd470c63061417a1ea9ab78e9849bed898155bc080

See more details on using hashes here.

Provenance

The following attestation bundles were made for matplus-0.1.4.tar.gz:

Publisher: publish.yml on ac-i2i-engineering/MatPlus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file matplus-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: matplus-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 12.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for matplus-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 d53dd755502a5523c7a56972cee3288c7b9189098f68f3a6d3a3aaeb4d7fb346
MD5 ab99d05e4e561ea3f67b46a547be0312
BLAKE2b-256 3f0c074cc8bfaa46b0169c164b4346764d950ad2b626a813c5661cba0e54bc8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for matplus-0.1.4-py3-none-any.whl:

Publisher: publish.yml on ac-i2i-engineering/MatPlus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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