XKCDify

This notebook serves no useful purpose. It just demonstrates a cool matplotlib function which makes a plot look like a hand drawn cartoon, similar to those on xkcd. Read more at jakes post here,

http://jakevdp.github.io/blog/2013/07/10/XKCD-plots-in-matplotlib/


In [ ]:
import skrf as rf 
%matplotlib inline
from pylab import * 

from skrf.data import ring_slot

xkcd() # from matplotlib version

In [ ]:
figure(figsize = (8,6))
ring_slot.plot_s_db(title='Important Results')
ylim(-30,30)

In [ ]:
figure(figsize = (8,6))
ring_slot.plot_s_smith()
title('Important Results')

In [ ]: