A Python package for chartly multiple plots.
Project description
chartly Package
chartly
is a simple plotting tool designed to help users create scientific plots with ease. Whether you want to test a distribution for normality or to plot contours onto a map of the globe, chartly can help you achieve your scientific plot with minimal effort. Chartly also allows users to plot multiple overlays and subplots onto the same figure.
Project Status
Here's the current status of our workflows:
Workflow | Status |
---|---|
Testing Suite | |
Deployment Suite | |
Sphinx Documentation | |
Guard Main Branch | |
Code Quality Checker |
Components
The chartly's codebase structure is as shown below:
.
├── chartly/
│ ├── base.py
│ ├── chartly.py
│ ├── charts.py
│ └── utilities.py
│ └── tests/
│ │ ├── __init__.py
│ │ └── test_chartly.py
├── docs/
│ ├── __init__.py
│ ├── source/
| │ ├── conf.py
| │ ├── index.rst
| │ ├── Plot.rst
| │ └── Multiplots.rst
├── requirements/
│ ├── testing.txt
│ ├── staging.txt
│ └── production.txt
├── LICENSE
├── MANIFEST.in
├── README.md
├── requirements.txt
├── setup.py
└── VERSION
Installation
To install chartly
, run this command in your command line:
pip install chartly
Example
Scenario: After collecting data from a sample, an investigator wants to visualize the spread of his data, and also determine whether the sample data fits a normal distribution.
Here is how Chartly can help the investigator meet his goals.
from chartly import chartly
import numpy as np
"""Scatter the data"""
# 1.1 Initialize a figure to plot the scatter plot
args = {"super_title": "Scatter of the Sample Data", "super_xlabel": "X", "super_ylabel": "Y"}
chart = chartly.Chart(args)
# 1.2 Define data
x_range = np.arange(200)
sample_data = np.random.randn(200)
# 1.3 Create Subplot and plot scatter plot
customs = {"color": "royalblue", "size": 50, "marker": "o"}
data = [x_range, sample_data]
chart.new_subplot({"plot": "scatter", "data": data, "customs": customs})
# 1.4 Display the figure
chart()
"""Investigate the Distribution of the data using Chartly."""
# 2.1 Define main figure labels
args = {"super_title": "Investigating a Dataset's Distribution", "super_xlabel": "X", "super_ylabel": "Y", "share_axes": False}
# 2.2 initialize a new figure
chart = chartly.Chart(args)
# 2.3 Determine the distribution of the sample data using a dot plot, probability plot and a normal cdf plot.
plots = ["probability_plot", "dotplot", "normal_cdf"]
for plot in plots:
chart.new_subplot({"plot": plot, "data": sample_data, "axes_labels": {"title": plot}})
# 2.4 Display the figure
chart()
From the normal probability plot, we see that the line of best fit produced fits the data i.e. most of the points lie on or very close to the line. This suggests that the data has a normal distribution. This is supported by the dot plot, where the plot's shape resembles the bell curve shape distincitive to the normal distribution, and the normal CDF plot, where the CDF of the data falls very closely to the CDF we expect of a standard normal distribution.
However, if we look closely, we see that the points on the negative end of the plot are very light, suggesting that the data is negatively skewed. This is confirmed by the density plot, where we see that the more positive end of the distribution is heavier that its more negative end.
Given this, the investigator can conclude that the sample has a negatively skewed normal distribution, with a mean of 0.03 and a standard deviation of 0.96.
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
Built Distribution
File details
Details for the file chartly-0.0.4.tar.gz
.
File metadata
- Download URL: chartly-0.0.4.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b448965b36393d9ec235ff855e1423d4cd6e5c6460b677a52468f6673fe8e4c6 |
|
MD5 | 77624f9e0c97c100049354ad213fc7c7 |
|
BLAKE2b-256 | 06fc39204c91aac622c5008582eefebc33e17033c29773c3cdfb3d396a65eb6e |
File details
Details for the file chartly-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: chartly-0.0.4-py3-none-any.whl
- Upload date:
- Size: 16.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7cfdc76463b2054166fb6c011bcb402d6795b0d28066d46d805951c18fe71f7 |
|
MD5 | 5fcdf020f2ed501b282cf8aa49c9bd01 |
|
BLAKE2b-256 | 99bc1028c16aaf938d758b063fabba067afb6300c773b2f5f974ce65ef40c6bc |