Skip to content

Instantly share code, notes, and snippets.

@SaremS
Last active May 9, 2023 14:47
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 SaremS/748ed817b1ac395fd8f23f8243213e3f to your computer and use it in GitHub Desktop.
Save SaremS/748ed817b1ac395fd8f23f8243213e3f to your computer and use it in GitHub Desktop.
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(321)
plt.figure(figsize = (16,5))
plt.plot(np.cumsum(np.random.normal(size = 100)),color="blue")
plt.margins(x=0)
plt.grid(alpha=0.5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment