Skip to content

Instantly share code, notes, and snippets.

@mjam03
Created April 1, 2023 13:28
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 mjam03/9ebbd32823fb7c1643002013fa608d32 to your computer and use it in GitHub Desktop.
Save mjam03/9ebbd32823fb7c1643002013fa608d32 to your computer and use it in GitHub Desktop.
Test Gistify Markdown
# this code block should gistify as it is >5 lines
x = np.linspace(0, 1, 101)
y = x**2
fig, ax = plt.subplots(figsize=(20,10))
plt.plot(x, y)
ax.set_title('Graph showing y=x**2')
ax.set_xlabel('x')
ax.set_ylabel('y');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment