Skip to content

Instantly share code, notes, and snippets.

@Esaslow
Created November 2, 2018 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Esaslow/c772db6e1ef5298f92021eba73ba2845 to your computer and use it in GitHub Desktop.
Save Esaslow/c772db6e1ef5298f92021eba73ba2845 to your computer and use it in GitHub Desktop.
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')
# Add a title
plt.title('My first Plot with Python')
# Add X and y Label
plt.xlabel('x axis')
plt.ylabel('y axis')
# Add a grid
plt.grid(alpha=.4,linestyle='--')
# Add a Legend
plt.legend()
# Show the plot
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment