Skip to content

Instantly share code, notes, and snippets.

View abehmiel's full-sized avatar

Abraham Hmiel abehmiel

View GitHub Profile
@abehmiel
abehmiel / 3dplot_quick.py
Last active March 31, 2017 20:08
Quick 3d plot snippet for 4 series on the same plot
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
# generally, it's not advised to make 3d plots becuase they're not very transferable
# and there's usually ways to do dimensionality reduction. However, sometimes it's useful
# for exploratory purposes.
fig = plt.figure(figsize=(14,9.5))
ax = fig.add_subplot(111, projection='3d')
ax.scatter(x1, y1, z1, label='data1', c='k')
@abehmiel
abehmiel / subplot_latex_nice.py
Created March 31, 2017 18:18
Matplotlib subplots with TeX rendering: good figure baseline for publications
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
fig = plt.figure(figsize=(8.5,11.0))
plt.rc('text', usetex=True)
plt.rc('font', family='serif')
plt.rcParams['text.latex.preamble'] = [r'\boldmath']
# data in xmn, ymn does not exist. Replace with whatever data you're trying to plot
@abehmiel
abehmiel / 0_reuse_code.js
Created March 31, 2017 15:29
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@abehmiel
abehmiel / langton.py
Last active March 28, 2017 05:13
Python script for creating a Langton's Ant cellular automata
#!/usr/bin/python
# Langton's Ant
# Abraham Hmiel, 2017
# CC 3.0 attribution sharealike license
import numpy as np
import re
import sys
import matplotlib.pyplot as plt
import matplotlib as mpl