Skip to content

Instantly share code, notes, and snippets.

@kenjisato
Last active August 29, 2015 14:22
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 kenjisato/222469dcf992c92d1e84 to your computer and use it in GitHub Desktop.
Save kenjisato/222469dcf992c92d1e84 to your computer and use it in GitHub Desktop.
2015 経済動学 講義資料 (2015/04/06)
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import numpy as np
import matplotlib.pyplot as plt
x = np.random.random(100)
y = 2 * x + np.random.randn(100)
plt.plot(x, y, marker="o", linestyle='')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment