#!/usr/bin/env python # coding: utf-8 # In[ ]: # Magic get_ipython().run_line_magic('matplotlib', 'inline') # Reload modules whenever they change get_ipython().run_line_magic('load_ext', 'autoreload') get_ipython().run_line_magic('autoreload', '2') # Make clusterking package available even without installation import sys sys.path = ["../../"] + sys.path # In[ ]: import clusterking as ck # In[ ]: c = ck.plots.colors.ColorScheme() # In[ ]: c.demo() # In[ ]: c.demo_faded(5) # In[ ]: c.demo_faded(12) # In[ ]: