Skip to main content

A set of helper functions for quickly making matplotlib plots with a high number of built-in options.

Project description

Description

chroptiks is a Python package that offers advanced plotting utilities, making it easier to create complex and informative visualizations. It extends the functionality of libraries like matplotlib and scipy, providing a user-friendly interface for a variety of plotting needs.

Requirements

Python libraries: matplotlib, numpy, scipy

Installation

To install chroptiks, run:

pip install chroptiks

or if you want to install from source:

git clone https://github.com/cagostino/chroptiks.git
cd chroptiks
python setup.py install

Features

—2D Histograms (hist2d): Easily create 2D histograms for data analysis.

—1D Histograms (hist1d): Simplify the process of creating and customizing 1D histograms.

—Scatter Plots (scatter): Enhanced functionality for scatter plot creation.

—3D Plots (plot3d): Intuitive tools for 3D data visualization.

—Bar Charts (plotbar): Quick and customizable bar chart creation.

Example usage

hist2d, hist1d, scatter, plot3d, plotbar are now ready to be used as per their defined functionalities and plots are generated through each of their plot methods. For example:

import numpy as np
from chroptiks.plotting_utils import hist2d

x = np.linspace(-1,1, 100000)+np.random.normal(0,.1, size=100000)
y = x**(3)+np.random.normal(0, 0.3, size=100000)
z =  np.random.normal(size=100000)

hist2d.plot(x,y,nx=200,ny=200)

hist2d.plot(x,y,nx=40, ny=40, ccode = z, ccodename='Z', xlabel='X', ylabel='Y')

hist2d.plot(x,y,nx=200,ny=200,bin_y=True, size_y_bin=0.1, xlabel='X', ylabel='Y', percentiles=False)

from chroptiks.plotting_utils import hist1d

hist1d.plot(z, range=(-2,2), bins=100, xlabel='Z', ylabel='Counts')

hist1d.plot(z, range=(-2,2), bins=100, xlabel='Z', ylabel='Counts', normed=True)

hist1d.plot(z, range=(-4,4), bins=100, xlabel='Z', ylabel='Cumulative Count', cumulative=True)



from chroptiks.plotting_utils import scat

#scat
scat.plot(x,z)

#scat with color-code
scat.plot(x,y, ccode=z, color=None, edgecolor=None, vmin=-0.5, vmax=0.5)
#note if you use ccode to color the points, you must set color to None, and I would advise you to set edgecolor to None as well or else each will have outlines.

#scat with y-binning
scat.plot(x, y, bin_y=True, size_y_bin=0.1, percentiles=True, xlabel='X', ylabel='Z', aspect='auto')

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

chroptiks-0.1.7.tar.gz (9.0 kB view details)

Uploaded Source

Built Distribution

chroptiks-0.1.7-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file chroptiks-0.1.7.tar.gz.

File metadata

  • Download URL: chroptiks-0.1.7.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for chroptiks-0.1.7.tar.gz
Algorithm Hash digest
SHA256 021e1372a6061e70e08c3dcfea563b7f23b16217dacd64e08c51b4da60a2c607
MD5 7c60df334d264dd50c35b527c05a64b6
BLAKE2b-256 d2ee12267ad3d2670eb4ca28994b7a6ed77715c78e2805557ec0064d7b450af4

See more details on using hashes here.

File details

Details for the file chroptiks-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: chroptiks-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 7.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for chroptiks-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 d26a073dcc55f7128e4fb967f9a7394ed939af19852d2027c5c36673b5843462
MD5 d985868daeece74ec37fcced7996bb0d
BLAKE2b-256 d648ecefbfb5b98fea622e72f4f7f8c4611af1e85540e8708f2c05c5d36cf6ad

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