Skip to main content

An intuitive library that seamlessly adds plotting capabilities and functionality to any model objects or outputs, compatible with tools like scikit-learn, XGBoost, TensorFlow, and more.

Project description

Welcome to Scikit-plots 101

Single line functions for detailed visualizations

The quickest and easiest way to go from analysis...

📘 Documentation, Examples and Try|Install Scikit-plots:

Explore the full features of Scikit-plots: https://scikit-plots.github.io/dev/devel/index.html

🐋 Scikit-plots Runtime Docker Images:

🐳 Explore on Docker Hub Pre-built Docker images for running scikit-plots on demand — with Python 3.11.

🔎 Run the latest scikit-plots container — with full or partial preinstallation — interactively:

# docker run -it --rm scikitplot/scikit-plots:latest
docker run -it --rm scikitplot/scikit-plots:latest -i -c "scikitplot -V"
# docker run -it scikitplot/scikit-plots:latest
docker run -it -v "$(pwd):/work/notebooks:delegated" -p 8891:8891 scikitplot/scikit-plots:latest

📥 User Installation:

🧠 Gotchas:

  • ⚠️ (Recommended): Use a Virtual Environmentt (like venv pipenv ) to Avoid Conflicts.
  • 🚫 Don't use conda base — it's prone to conflicts.
  • ✅ This avoids dependency issues and keeps your system stable.

Conda:

# (conda or mamba) Create New Env and install ``scikit-plots``
# Create a new environment and install Python 3.11 with IPython kernel support
mamba create -n py311 python=3.11 ipykernel -y
# Activate the environment
conda activate py311

(Optionally) Pipenv install all dependencies:

## (Optionally) Pipenv dep
## wget https://raw.githubusercontent.com/scikit-plots/scikit-plots/main/docker/env_pipenv/Pipfile
curl -O https://raw.githubusercontent.com/scikit-plots/scikit-plots/main/docker/env_pipenv/Pipfile
curl -O https://raw.githubusercontent.com/scikit-plots/scikit-plots/main/docker/env_pipenv/Pipfile.lock
pip install pipenv && pipenv install
# Activate the environment
pipenv shell
## (conda or mamba) Install scikit-plots (Upcoming)
conda install --yes -c conda-forge scikit-plots

📦 From PIP Installation by pypi , pypi.anaconda.org or GITHUB

The easiest way to set up scikit-plots is to install it using pip with the following command:

- By pypi:

# Now Install scikit-plots (via pip, conda, or local source)
pip install scikit-plots

- By pypi.anaconda.org (with required runtime dependencies ):

## (Optionally) Install the lost packages "Runtime dependencies" or use `pipenv`
## https://github.com/celik-muhammed/scikit-plots/tree/main/requirements
## wget https://raw.githubusercontent.com/scikit-plots/scikit-plots/main/requirements/default.txt
curl -O https://raw.githubusercontent.com/scikit-plots/scikit-plots/main/requirements/default.txt
pip install -r default.txt
## Try After Ensure all "Runtime dependencies" installed
pip install -U -i https://pypi.anaconda.org/scikit-plots-wheels-staging-nightly/simple scikit-plots

- By GITHUB: @<branch> , @<tag> or Source Code Archive URLs to specify a version

- by GITHUB Branches: @<branch>

## pip install git+https://github.com/scikit-plots/scikit-plots.git@<branches>
## Latest in Development
pip install git+https://github.com/scikit-plots/scikit-plots.git@main
##
## (Added C, Cpp, Fortran Support) Works with standard Python (CPython)
pip install git+https://github.com/scikit-plots/scikit-plots.git@maintenance/0.4.x
##
## (Works with PyPy interpreter) Works with standard Python (CPython)
pip install git+https://github.com/scikit-plots/scikit-plots.git@maintenance/0.3.x
pip install git+https://github.com/scikit-plots/scikit-plots.git@maintenance/0.3.7

- by GITHUB Tags: @<tag>

## pip install git+https://github.com/scikit-plots/scikit-plots.git@<tags>
pip install git+https://github.com/scikit-plots/scikit-plots.git@v0.4.0rc5
pip install git+https://github.com/scikit-plots/scikit-plots.git@v0.3.9rc3
pip install git+https://github.com/scikit-plots/scikit-plots.git@v0.3.7

📁 From Source Installation by Archive or GIT Clone

🐍 Pitfalls:

  • 💡 You can download GitHub Source Code Archives (.zip or .tar.gz) by specifying a branch, tag, or a specific commit ID.
  • 🛠️ After unzipping the GitHub Source Code Archive (similar to cloning), remember require to run git submodule update to initialize submodules.
  • 🔄 Alternatively, you can install scikit-plots directly from the GitHub Source Code Repository to access the latest updates.
  • ↔️ Alternatively, Source Distribution (.tar.gz) are also available for direct installation via PyPI (sdist), if applicable.

- By Source Distribution (.tar.gz) (with/without required build dependencies )

## pip install package	Installs wheel (.whl) if available, else source
## pip install --no-binary=package package  # Forces source installation only the specified package
pip install --no-binary=scikit-plots scikit-plots
## pip install --no-binary=:all: package  # Forces source installation for Package + all dependencies
## This forces scikit-plots and all its dependencies to be installed from source (from .tar.gz).
pip install --no-binary=:all: scikit-plots

- By GITHUB Source Code: (with required build dependencies )

- by GITHUB Source Code Archive URLs: ( .zip or .tar.gz ) (with required build dependencies )

Source code archives are available at specific URLs for each repository. For example, consider the repository scikit-plots/scikit-plots .

- by GitHub Source Code Repository Cloned: (with required build dependencies )

## Forked repo: https://github.com/scikit-plots/scikit-plots.git
git clone https://github.com/YOUR-USER-NAME/scikit-plots.git
cd scikit-plots
## (if Necessary) Add safe directories for git
# bash docker/script/safe_dirs.sh
git config --global --add safe.directory '*'
## (Optionally) download submodules, Not Needed Every Time.
git submodule update --init --recursive
# Ensure venv (e.g. conda, venv, pipenv)
# pip install -r ./requirements/all.txt
pip install -r ./requirements/build.txt
## Install scikit-plots
pip install --no-cache-dir . -v

🧊🔧 It is also possible to include optional dependencies:

## (Optionally) Install development version
python -m pip install --no-cache-dir -e .[build,dev,test,doc] -v
## https://github.com/celik-muhammed/scikit-plots/tree/main/requirements
## (Optionally) Try Development [build,dev,test,doc]
## For More in Doc: https://scikit-plots.github.io/
python -m pip install --no-cache-dir --no-build-isolation -e .[build,dev,test,doc] -v
## https://github.com/celik-muhammed/scikit-plots/tree/main/requirements
## [cpu] refer tensorflow-cpu, transformers, tf-keras
## [gpu] refer Cupy tensorflow lib require NVIDIA CUDA support
pip install "scikit-plots[cpu]"

Sample Plots

plot_feature_importances.png plot_classifier_eval.png plot_classifier_eval.png
plot_roc.png plot_precision_recall.png
plot_pca_component_variance.png plot_pca_2d_projection.png
plot_elbow.png plot_silhouette.png
plot_cumulative_gain.png plot_lift.png
plot_learning_curve.png plot_calibration_curve.png

Scikit-plots is the result of an unartistic data scientist's dreadful realization that visualization is one of the most crucial components in the data science process, not just a mere afterthought.

Gaining insights is simply a lot easier when you're looking at a colored heatmap of a confusion matrix complete with class labels rather than a single-line dump of numbers enclosed in brackets. Besides, if you ever need to present your results to someone (virtually any time anybody hires you to do data science), you show them visualizations, not a bunch of numbers in Excel.

That said, there are a number of visualizations that frequently pop up in machine learning. Scikit-plots is a humble attempt to provide aesthetically-challenged programmers (such as myself) the opportunity to generate quick and beautiful graphs and plots with as little boilerplate as possible.

Okay then, prove it. Show us an example.

Say we use Keras Classifier in multi-class classification and decide we want to visualize the results of a common classification metric, such as sklearn's classification report with a confusion matrix.

Let’s start with a basic example where we use a Keras classifier to evaluate the digits dataset provided by Scikit-learn.

# Before tf {'0':'All', '1':'Warnings+', '2':'Errors+', '3':'Fatal Only'} if any
import os; os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
# Disable GPU and force TensorFlow to use CPU
import os; os.environ['CUDA_VISIBLE_DEVICES'] = ''
import tensorflow as tf
# Set TensorFlow's logging level to Fatal
import logging; tf.get_logger().setLevel(logging.CRITICAL)
import numpy as np
from sklearn.datasets import load_digits
from sklearn.model_selection import train_test_split

# Loading the dataset
X, y = load_digits(
  return_X_y=True,
)
# Split the dataset into training and validation sets
X_train, X_val, y_train, y_val = train_test_split(
  X, y, test_size=0.33, random_state=0
)
# Convert labels to one-hot encoding
Y_train = tf.keras.utils.to_categorical(y_train)
Y_val = tf.keras.utils.to_categorical(y_val)
# Define a simple TensorFlow model
tf.keras.backend.clear_session()
model = tf.keras.Sequential([
    # tf.keras.layers.Input(shape=(X_train.shape[1],)),  # Input (Functional API)
    tf.keras.layers.InputLayer(shape=(X_train.shape[1],)),
    tf.keras.layers.Dense(64, activation='relu'),
    tf.keras.layers.Dense(64, activation='relu'),
    tf.keras.layers.Dense(10, activation='softmax')
])
# Compile the model
model.compile(
  optimizer='adam',
  loss='categorical_crossentropy',
  metrics=['accuracy'],
)
# Train the model
model.fit(
    X_train, Y_train,
    batch_size=32,
    epochs=2,
    validation_data=(X_val, Y_val),
    verbose=0
)
# Predict probabilities on the validation set
y_probas = model.predict(X_val)
# Plot the data
import matplotlib.pyplot as plt
import scikitplot as sp
# sp.get_logger().setLevel(sp.sp_logging.WARNING)
sp.logger.setLevel(sp.logger.INFO)  # default WARNING
# Plot precision-recall curves
sp.metrics.plot_precision_recall(
  y_val, y_probas,
)
quick_start_tf

Pretty.

Maximum flexibility. Compatibility with non-scikit-learn objects.

Although Scikit-plot is loosely based around the scikit-learn interface, you don't actually need scikit-learn objects to use the available functions. As long as you provide the functions what they're asking for, they'll happily draw the plots for you.

The possibilities are endless.

Release Notes

See the changelog for a history of notable changes to scikit-plots.

Contributing to Scikit-plots

Reporting a bug? Suggesting a feature? Want to add your own plot to the library? Visit our.

The Scikit-plots Project is made both by and for its users, so we welcome and encourage contributions of many kinds. Our goal is to keep this a positive, inclusive, successful, and growing community that abides by the Scikit-plots Community Code of Conduct.

For guidance on contributing to or submitting feedback for the Scikit-plots Project, see the contributions page. For contributing code specifically, the developer docs have a guide with a quickstart. There's also a summary of contribution guidelines.

Developing with Codespaces

GitHub Codespaces is a cloud development environment using Visual Studio Code in your browser. This is a convenient way to start developing Scikit-plots, using our dev container configured with the required packages. For help, see the GitHub Codespaces docs.

Acknowledging (Governance) and Citing Scikit-plots

See the Acknowledgement, Citation Guide and the CITATION.bib, CITATION.cff file.

  1. scikit-plots, “scikit-plots: vlatest”. Zenodo, Aug. 23, 2024. DOI: 10.5281/zenodo.13367000.

  2. scikit-plots, “scikit-plots: v0.3.8dev0”. Zenodo, Aug. 23, 2024. DOI: 10.5281/zenodo.13367001.

Supporting the Project (Upcoming)

Powered by NumFOCUS Donate

NumFOCUS, a 501(c)(3) nonprofit in the United States.

License

Scikit-plots is licensed under a 3-clause BSD style license - see the LICENSE file, and LICENSES files.

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

scikit_plots-0.4.0.post2.tar.gz (32.7 MB view details)

Uploaded Source

Built Distributions

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

scikit_plots-0.4.0.post2-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86-64

scikit_plots-0.4.0.post2-cp313-cp313-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post2-cp313-cp313-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

scikit_plots-0.4.0.post2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

scikit_plots-0.4.0.post2-cp313-cp313-macosx_14_0_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

scikit_plots-0.4.0.post2-cp313-cp313-macosx_14_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

scikit_plots-0.4.0.post2-cp313-cp313-macosx_12_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

scikit_plots-0.4.0.post2-cp313-cp313-macosx_10_14_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

scikit_plots-0.4.0.post2-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

scikit_plots-0.4.0.post2-cp312-cp312-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post2-cp312-cp312-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

scikit_plots-0.4.0.post2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

scikit_plots-0.4.0.post2-cp312-cp312-macosx_14_0_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

scikit_plots-0.4.0.post2-cp312-cp312-macosx_14_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

scikit_plots-0.4.0.post2-cp312-cp312-macosx_12_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

scikit_plots-0.4.0.post2-cp312-cp312-macosx_10_14_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

scikit_plots-0.4.0.post2-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

scikit_plots-0.4.0.post2-cp311-cp311-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post2-cp311-cp311-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

scikit_plots-0.4.0.post2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

scikit_plots-0.4.0.post2-cp311-cp311-macosx_14_0_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

scikit_plots-0.4.0.post2-cp311-cp311-macosx_14_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

scikit_plots-0.4.0.post2-cp311-cp311-macosx_12_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

scikit_plots-0.4.0.post2-cp311-cp311-macosx_10_14_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

scikit_plots-0.4.0.post2-cp310-cp310-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10Windows x86-64

scikit_plots-0.4.0.post2-cp310-cp310-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post2-cp310-cp310-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

scikit_plots-0.4.0.post2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

scikit_plots-0.4.0.post2-cp310-cp310-macosx_14_0_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

scikit_plots-0.4.0.post2-cp310-cp310-macosx_14_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

scikit_plots-0.4.0.post2-cp310-cp310-macosx_12_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

scikit_plots-0.4.0.post2-cp310-cp310-macosx_10_14_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

Details for the file scikit_plots-0.4.0.post2.tar.gz.

File metadata

  • Download URL: scikit_plots-0.4.0.post2.tar.gz
  • Upload date:
  • Size: 32.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for scikit_plots-0.4.0.post2.tar.gz
Algorithm Hash digest
SHA256 be4d886af2e63442583a33d3f8c68f910c1fb7cfb9c9f069a5baffd34a6f9b84
MD5 975e68022f4c21917ff2f8b8407074a0
BLAKE2b-256 f7a04f1ae0793688944947feec269f2cb397ef9f60963c59b8b6838e5d5f1378

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2.tar.gz:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d610965df74a51558d379e35e9aa82567b6b77b9fd5c52d8265f5156698fe649
MD5 1662a1e2daf3569e828147e1e0ec2432
BLAKE2b-256 7ad25daeaf2fcc999354971d0333f06a7a22b06d73efe618740d66416d4a80df

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp313-cp313-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d151159e115caf175bfa421e363bba1283d01f3d58d44629bcd0fd5a4a87e1c
MD5 b25df448137cb2222a14ea35ce040ec3
BLAKE2b-256 8f9608462de9c645cb7ff7901a7874e098cc94025db5eec6f7d558d25b9f2139

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0a08c49ff4c4f9f2fe188ba667c7b703628e52f91a19c595b3ddbc64c9da7a2
MD5 99c7b65c3cdab308d99a48307b610caf
BLAKE2b-256 16bfde4022d6d97eeee68017caf3b519e0b3fac6ff2de1333951254082ef8b78

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 efaabda6768f4a552fd83fed15dfb89287721746ce651bf7f21c0ddfa71e71f3
MD5 9b79e07b36d8e2340bb3fcbc2052b0b6
BLAKE2b-256 698ec4bb20c508ed312a12ff3474d71d0d790a1d8066e2a31018dfa0f9212f1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c45950fd613d572656b3405b8d63186aada22f83a142bbd35faafe6e2b72c970
MD5 b2f32fd3ae1cb069ab27e7d2cb85e604
BLAKE2b-256 3e10880c28ae47abdaaca36fd77881455f1ed09b00e9726fe16f45772e39872a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 093c910d992f58d3b18d15cc6d348b3f02ea9ad8efc0f991f112c5eceaf6d426
MD5 577fa932887e24e86b58b02c0d1fc3fb
BLAKE2b-256 6fe696a2cb359ed724298d98672b05876aaf57e9a9248d4351eb69a12c2ad26b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp313-cp313-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 64eae8a609f1fdda9c27515a2918524b194af30a2588749a3ab371c27b8b64e9
MD5 a62e82be229809f84a7deb5e58833e03
BLAKE2b-256 a8e0b2be1d6203a1e0db6b73a91e9c73af5366cc454a3a30e3f614b47c302082

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 96203bc65c3f4b748ff78e8b75a9c4386b4b021963733f6c1915fd6bcbc00a9c
MD5 46cd5a2ee8581d7b40d95052cf743a6a
BLAKE2b-256 157700f448bfaeab99c3da870c86711713a7938d3b99f2f1fcfae6cf5c35ad4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp313-cp313-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9d338f234961f578450d9031283a92b01e348c02048a2609f1af311f4cf56ec1
MD5 ba6a2ebdee21d342d3838814ac506ae8
BLAKE2b-256 f12d1aead6dab562e65e4210c6791177a7d1deabbabefa183f268e6a8856dbbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp313-cp313-macosx_10_14_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6e2600b7e96541c7f05e87c425f97644e7134b367820ccbe10e8992cd19c1f07
MD5 b8f209e96f34089e9f99ed73633592ee
BLAKE2b-256 4a292296338e09a7648933a1836e3725f0be443ef6244e0fafce5fd3e984fe00

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp312-cp312-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 780f4c1e1a7a560e1c6ab882a800874057a81e36c5c77be556657c4accad985b
MD5 f52d33b72fa73facff0b9e57aae2870a
BLAKE2b-256 0aad602a9538b06397e3ac17faef89626d11d97b3226e770b942c30c523b4aab

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9d4803ffa3ec837c4d8d5126f7e35460a1ef1247761bb82adc4bf782d71b95e
MD5 59e7901291fe14793afa02472adb040d
BLAKE2b-256 875bbe9de1d604c96154fd230329c5dfce3e75f9244e9fc726ad3f43ffc63f65

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36ab471cb8b06aa12244be60d32cace560b462d882c0cf654bf0fcd2a92f09ee
MD5 11e559d1d8c11a1459eef957af24421a
BLAKE2b-256 4ccdfe4f555bb3c10e6090f6d7c9f6fb7aa4ee31ed145e7a536fc7906e5dcd90

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87a8e7da2e2ce9bcd87644ff2b50dd21e596d57f7cb79988f858b9aab22773bd
MD5 c2e616b30e8927707f70cc48f9b76dd2
BLAKE2b-256 d4ff58f36e127d609fb28e2501ce3b2819e9b457487af7629e6b15c30df734d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 64495c0f2e5d5ef15bc900d482338a2f83782eb9016d42cd5356dfb8443b0873
MD5 530617f31a07acb0e039f05a4258a35f
BLAKE2b-256 01cc678026d4f6b165b32218a4e28c56e8a43928a572c34bfd0e95ad7d81c212

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp312-cp312-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 69273ac0adb18d7bcdac52d52f8f2b13b6fd47d86952b723801980f80b1ed297
MD5 cf7451d80722d0fe93c320033d70a546
BLAKE2b-256 60278bc7e84c4367fb1e046dba227eebd4a6b872c4354f692bb8db10dbdb1a7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 2cd8cf238d4fc1895b298e9757bb8589799ffdb952a91bc4af4aa991413e410b
MD5 acfd037147e31d09a80a1651da1cfae9
BLAKE2b-256 398c636babc97946b2c61eeb8bc65417c9027e47e443bc1cf30d2d566d2f51d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp312-cp312-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8a58f279f269e5c41da999b028a2700874d3e4fc9279a7203050b44b68775a86
MD5 2eb505845f8884dc5c0865d6bbea9775
BLAKE2b-256 145359030a91ee42eae99e8cdd9c51ff6cd2d9066334793a6d42cee67c1cd85a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp312-cp312-macosx_10_14_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 68479a78f5e8893eb68c0e00a3f8315c2640242e5a6e1d2c3145dbb9d4b7a6d2
MD5 168d21b794e0f94e36dc0007ed31ba86
BLAKE2b-256 779971e744bc0688ae8384df87a82d8591d4010c6ca6c6b48b2b322015b2d3ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp311-cp311-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42f32100d2107780011035347cc568f6a0375eb0127b5e2556fc2b8d45973dc9
MD5 554038b729d3adec651397f3819516fd
BLAKE2b-256 b1cf28f28bc5264737b161c9bccd3fd069d6054066fd057d9082685623ba0262

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e133952084732d645becd4edf0a9a92e3ad025200c81250fbc2159576db2a70d
MD5 6376fc46c9b331025ba69053687267bd
BLAKE2b-256 65c42341dd6589595368e21407eb4d5b8c04646d348b0c441b83db897fb6b7b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37e3dca1b69ed53ae0c22788c35e7010e7d4fe212b44c6cc38bf8788d7040703
MD5 3209428fb04f0de731bd027e0e3edbed
BLAKE2b-256 b77b95aca7a5fc8ab8390026df5bbcb2a1ff933b97642a2da1b5543eb9450226

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24057f097848980cceadbb3073d0189e55c68ba30fdfadcaae4a2c2581d55807
MD5 bc41723016184bf271d976f7fc651fb0
BLAKE2b-256 329518d20b4e5f1579941d87a990b11247abbe3a714018208506765c7f6bab15

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 ac880acb6413c2c6a3cc15173a18c830efc90a3abdf3afd70154412ef30472b4
MD5 e82fadb1a04a0480d3b4fa6a6a82bff5
BLAKE2b-256 f09ebd98a12250dab1c353c3772577e99bb28b8b9a037dae17fec9fd484b1089

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp311-cp311-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 876b10d805ddc86ba57ecf5df5c6af03ccfbfbf4c121abd4fc6f1d583b1ac8f9
MD5 35ab3af89805d55545426ea87fd4dafb
BLAKE2b-256 47af5770e8002d3278115558998a93381ccc67cb50856a822dfceca19a6a124e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 058b8346884631d9bc4d4fe3a3d6fd38b97a352ee4a58f2243c82e19ff69aba3
MD5 9e9f443a0f5b7d6350170f8e2bb55e07
BLAKE2b-256 72f0c159f59074738e928576d8f5adb3ab6133adf309fe66c0840a2dbd3bd13f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp311-cp311-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 81042215e677001bf948e0771b0eb8147a3db9dd71674a90baf9c087369babfe
MD5 db90505099edf4b27774c9e05b056b30
BLAKE2b-256 5087e8d1abc194cf9cc53e5e5134a1e333a6b30d44a182dd4cb3a6426d63b222

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp311-cp311-macosx_10_14_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f6f81e4df392fdb3ad7f304b6b0b1ea18859697157df5e2104f8eb8d502935b3
MD5 0ee4c2d91c973797b446c260fe9515be
BLAKE2b-256 f90d679dfee797559d4b2fed44f8e0f1104b7b28be00c923c08cdfea2ae57a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp310-cp310-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b46a5a16c809a195bb2d6fd1ff454a354ff5a41f9a55c79e2fccd5040a83d308
MD5 d0a337c60d7bdb7bd33b946428642fc8
BLAKE2b-256 04a2f1707ab534daa1ad4434b22149d65acfdcec2529c1710c9bd19e13f09f66

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 395fe2ad88ac46debd56e1719032407c0c5743bf1a1a7979fd7531f3d4927a30
MD5 59fd3cfdc164ed46f37f67d36f93914f
BLAKE2b-256 32b3da355e2176e643408e89be3b4801a9b24ea6cc045a36ad3c3c948f4f7cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f6b98cd670c088292a38dc0abf67e2df21ecc1873c514e77744040dc6c07c6d
MD5 1d73d0fb70b9c6fd59b646725f619dd0
BLAKE2b-256 627dcbae73b38202c83e3bb509795de3eb0ee4f2495becc4d3a90da30b034f46

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03c733796cf24cd841943866573358fc20fed1eb890d46d5ad2918f7dede4abc
MD5 bbf1e55cbb745af3c578344b64687445
BLAKE2b-256 1bf53c84875992c7df603bc3caba2259fb0740d8a3f3cf9f60b8d4c0d1f8da41

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 5d255757e1cd274167401418c16dadf7fff6724aef05d5219b065a22bbb97bcd
MD5 ef07d6465a59293a86eacd96027d9762
BLAKE2b-256 dd98c71e216fb4b1d6f2cce22829fbe2488c8a289cc3aabf3cc4d10f6298bb27

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp310-cp310-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 97224ce3283a03d3e314217780c4c4c08ede78b49485616ceb92dd5682aa74c9
MD5 dc816bfe7d0ea65f72c8d24e515d520f
BLAKE2b-256 30814cae8aa29daeefc42380ed1b2369721cb7f4aa14452e9e5c3b3f5f6589af

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 920d34919a8a5d0e8a88d9712e2f89e2a9618a2033526639cb91b1229f7dde35
MD5 b0416febac93391ec6d874fbcdb050a8
BLAKE2b-256 01c4a0778b5426f907e9440f52f9a4df65d5646199e66465cb142c3760dd308c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp310-cp310-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post2-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post2-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b3bdef550f2079a06bc24bdeeaebbc93687152cb8ceb3b36bb9aff68257afec8
MD5 aede923ad4872a1dc0f9862fcd042a4d
BLAKE2b-256 120654836018094636d9271239f3991a522931d35a706247e7497352e4be0294

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post2-cp310-cp310-macosx_10_14_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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