![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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.
Here's the current status of our workflows:
Workflow | Status |
---|---|
Testing Suite | |
Deployment Suite | |
Sphinx Documentation | |
Guard Main Branch | |
Code Quality Checker |
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
To install chartly
, run this command in your command line:
pip install chartly
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.
FAQs
A Python package for chartly multiple plots.
We found that chartly demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.