Testing IPython Notebook integration into Pelican
by
jaabell - Tue, 24 Jun 2014
In this post I'll make a small example meant to test the IPython notebook + Pelican integration thanks to the plugin created by danielfrg that can be found here.
Lets start out with some basic plotting!
In [1]:
x = linspace(0,1,1000)
y = x**2*sin(6*pi*x)
plot(x,y)
Out[1]:
Looks like everything is working fine. Let's try using XKCD plotting format! :)
In [3]:
xkcd()
plot(x,y+1)
xlabel("Abscissa")
ylabel("Ordinate")
Out[3]:
Cool! We're going to do some serious blogging now.
In [ ]: