Skip to content

Instantly share code, notes, and snippets.

View Esaslow's full-sized avatar

Elliott Saslow Esaslow

View GitHub Profile
### Keybase proof
I hereby claim:
* I am esaslow on github.
* I am esaslow (https://keybase.io/esaslow) on keybase.
* I have a public key ASBCVFkmCIkUGOeDQsMRl9Oc5vOAWPtSjHkpNNcID0vJNAo
To claim this, I am signing this object:
# Import our modules that we are using
import matplotlib.pyplot as plt
import numpy as np
# Create the vectors X and Y
x = np.array(range(10))
y = x ** 2
# Create the plot
plt.plot(x,y,label='y = x**2')
@Esaslow
Esaslow / plotting2.py
Created November 2, 2018 19:08
Plotting prettier equations
# Import our modules that we are using
import matplotlib.pyplot as plt
import numpy as np
# Create the vectors X and Y
x = np.array(range(100))
y = x ** 2
# Create the plot
plt.plot(x,y,label='y = x**2')
@Esaslow
Esaslow / Plotting_equations.py
Last active November 2, 2018 18:59
How to plot x ^ 2 with python
# Import our modules that we are using
import matplotlib.pyplot as plt
import numpy as np
# Create the vectors X and Y
x = np.array(range(100))
y = x ** 2
# Create the plot
plt.plot(x,y)
@Esaslow
Esaslow / Create_Unit_FileStructure.md
Last active September 11, 2018 03:10
This will create a Unit file structure with the correct formatting for EXL skills.

This script will make a folder structure that will match the needs of EXL skills. You will be prompted to enter the unit number along with the unit name. Once you have entered these values, you will want to enter a list of lectures that should be seperated by spaces.

This is super useful to prototype your lectures and get the format started out. Let me know if there is functionality that you would like me to add as I can easily do that.

Current features I am working on:

  1. Making the script add a final exam at the end so that it doesn't require another script
  2. Making the script so that it doesnt require you specify Unit Number
@Esaslow
Esaslow / elliott.ipynb
Last active July 9, 2018 20:48
Jupyter
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.