All Projects → jradavenport → Cubehelix

jradavenport / Cubehelix

Licence: bsd-2-clause
A full implementation of Dave Green's "cubehelix" colormap for Python

Projects that are alternatives of or similar to Cubehelix

Aws Ml Guide
[Video]AWS Certified Machine Learning-Specialty (ML-S) Guide
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Fftnet
Pytorch Implementation of FFTNet
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Machine Learning
My Attempt(s) In The World Of ML/DL....
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Scikit Learn Tips
🤖⚡️ scikit-learn tips
Stars: ✭ 1,203 (+1442.31%)
Mutual labels:  jupyter-notebook
Neural Networks Demystified
Supporting code for short YouTube series Neural Networks Demystified.
Stars: ✭ 1,215 (+1457.69%)
Mutual labels:  jupyter-notebook
Machinelearning
机器学习有关算法和实例
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Kaggle Notebooks
Sample notebooks for Kaggle competitions
Stars: ✭ 77 (-1.28%)
Mutual labels:  jupyter-notebook
Hinnefe2.github.io
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Brain Tumor Segmentation Using Deep Neural Networks
Keras implementation of paper by the same name
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Leveling Up Jupyter
Leveling up your Jupyter notebook skills
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Azure Sentinel
Cloud-native SIEM for intelligent security analytics for your entire enterprise.
Stars: ✭ 1,208 (+1448.72%)
Mutual labels:  jupyter-notebook
Covid19 Dashboard
A site that displays up to date COVID-19 stats, powered by fastpages.
Stars: ✭ 1,212 (+1453.85%)
Mutual labels:  jupyter-notebook
Learning python
Source material for Python Like You Mean it
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Knowledgegraphofa Sharecompanys
金融知识图谱构建
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Noaa Ghcn Weather Data
Fetching and processing NOAA Global Historical Climatology Network Weather Data
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Jupyterlab Commenting
Commenting and annotation for JupyterLab
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Tf Serving K8s Tutorial
A Tutorial for Serving Tensorflow Models using Kubernetes
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Notebooks
A collection of Jupyter/IPython notebooks
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Dm Competition Getting Started
数据挖掘竞赛(Kaggle,Data Castle,Analytics Vidhya,DrivenData)入门实践
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook
Tutorials 2018
Geophysical Tutorials column for 2018
Stars: ✭ 78 (+0%)
Mutual labels:  jupyter-notebook

cubehelix

A full implementation of Dave Green's cubehelix colormap for Python.

The user can adjust all parameters of the cubehelix algorithm. This enables much greater flexibility in choosing color maps, while (by default) ensuring the color map scales in brightness from black to white.

A few simple example flavors of cubehelix:

  • Default color map settings produce the standard "cubehelix": cubehelix.cmap()

Reversed Standard cubehelix scheme

  • Create color map in only blues: cubehelix.cmap(rot=0, start=0)
  • Create reverse (white to black) backwards through the rainbow once: cubehelix.cmap(rot=1, reverse=True)

A nice blue cubehelix scheme

a better rainbow

Discussion and examples shown on my blog: If We Assume

Basic Usage

import cubehelix
cx = cubehelix.cmap(start=0., rot=-0.5)
plot(x,cmap=cx)

Installation

Download:

  • Place cubehelix.py in your Python path.

From source::

setup.py install

or with pip::

pip install git+git://github.com/jradavenport/cubehelix.git
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].