#!/usr/bin/env python # coding: utf-8 # In[1]: import wes get_ipython().run_line_magic('matplotlib', 'inline') # In[2]: wes.available(show=True) # In[3]: wes.plot_palettes('Rushmore1', 'Moonrise3') # In[4]: wes.plot_palettes('BottleRocket2') # In[5]: try: import seaborn as sns except: pass import numpy as np import matplotlib.pyplot as plt wes.set_palette('Zissou1') # In[6]: for i in range(10): plt.plot(range(100), np.random.normal(i, 1, 100)) # In[7]: wes.set_palette('GrandBudapest1') for i in range(10): plt.plot(range(100), np.random.normal(i, 1, 100))