scatterd is an easy and fast way of creating scatter plots.
Project description
scatterd
- Easy and fast manner of creating scatter plots.
Contents
Installation
- Install scatterd from PyPI (recommended). scatterd is compatible with Python 3.6+ and runs on Linux, MacOS X and Windows.
- It is distributed under the MIT license.
Quick Start
pip install scatterd
- Alternatively, install scatterd from the GitHub source:
git clone https://github.com/erdogant/scatterd.git
cd scatterd
python setup.py install
Import scatterd package
from scatterd import scatterd
Example:
# Import some example data
from sklearn import datasets
iris = datasets.load_iris()
X = iris.data[:, :2] # we only take the first two features.
y = iris.target
# Make simple scatterplot
scatterd(X[:,0], X[:,1])
# Color based on labels
scatterd(X[:,0], X[:,1], label=y, s=100)
# Set labels
scatterd(X[:,0], X[:,1], label=y, s=100, norm=True, cmap='Set2', xlabel='xlabel', ylabel='ylabel', title='Title')
# Change sizes
s=np.random.randint(10,200,len(y))
scatterd(X[:,0], X[:,1], label=y, s=s, cmap='Set2', xlabel='xlabel', ylabel='ylabel', title='Title', fontsize=25, figsize=(15,10))
# Change figure size
scatterd(X[:,0], X[:,1], figsize=(25,15))
Maintainer
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
scatterd-0.1.2.tar.gz
(4.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file scatterd-0.1.2.tar.gz.
File metadata
- Download URL: scatterd-0.1.2.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0.post20200518 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77f3fd73703aa3b01e1d1139a01c14d99f3f9964db1dc88acd1367967dd6b0f8
|
|
| MD5 |
f79c2f923987c1afa34bc757f6708d21
|
|
| BLAKE2b-256 |
be340dd5aa571b19d827cf16e6fd06aeb43a511b428efcc4db0658199f44dc1a
|
File details
Details for the file scatterd-0.1.2-py3-none-any.whl.
File metadata
- Download URL: scatterd-0.1.2-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0.post20200518 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2310241d0e700d768657a043a46a62e918105d208e2d9ac488820967565996e1
|
|
| MD5 |
f41f028d799987feaca2b4ecc16f3e44
|
|
| BLAKE2b-256 |
430c1564d8d6906fa8a83abe83daee6c72df2174673342aae1c715b5bc58f5d2
|