Skip to content

Instantly share code, notes, and snippets.

View jakevdp's full-sized avatar

Jake Vanderplas jakevdp

View GitHub Profile
@jakevdp
jakevdp / discrete_cmap.py
Last active March 8, 2024 14:54
Small utility to create a discrete matplotlib colormap
# By Jake VanderPlas
# License: BSD-style
import matplotlib.pyplot as plt
import numpy as np
def discrete_cmap(N, base_cmap=None):
"""Create an N-bin discrete colormap from the specified input map"""
@jakevdp
jakevdp / google_magic.ipynb
Last active August 29, 2015 14:06
Google magic for IPython
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jakevdp
jakevdp / AsteroidVis.ipynb
Last active August 29, 2015 14:06
Asteroid Visualization Post
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jakevdp
jakevdp / LombScargle.ipynb
Created August 14, 2014 17:23
Lomb-Scargle quick scaling test
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jakevdp
jakevdp / BlockDiagonal.ipynb
Created July 22, 2014 23:51
Block Diagonal Stuff
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jakevdp
jakevdp / script.py
Created July 11, 2014 19:38
Simple mpld3 embedding
import mpld3
import matplotlib.pyplot as plt
plt.plot(range(10))
mpld3.show(template_type='simple', local=False)
@jakevdp
jakevdp / broken_notebook.ipynb
Created June 3, 2014 20:47
A notebook which contains HTML comments and breaks IPython 2.x
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jakevdp
jakevdp / fill_between.png
Last active August 29, 2015 14:01
fill_between example
fill_between.png
@jakevdp
jakevdp / README.md
Last active February 11, 2024 00:16
D3/IPython widget example

D3 IPython Widget Example

A simple example of two-way communication between IPython notebook and javascript, using a D3 widget.

View this notebook on nbviewer, but be aware that it won't work without being connected to an IPython kernel!

It's better to download the notebook itself and open it with IPython notebook.

@jakevdp
jakevdp / JSClass1.js
Last active August 29, 2015 13:57
A simple Javascript inheritance pattern
/**********************************************************************
I've been working with javascript for a bit, and I miss my
Python-style namespaces and class inheritance. Here's a little
pattern I came up with that allows me to do things (kind of)
the way I wish I could within javascript. I'd be curious if any
experienced JS users have comments or critiques. Thanks!
Edit - also see the second version (which I think is more clean)
below.
**********************************************************************/