Skip to content

Instantly share code, notes, and snippets.

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 kotoripiyopiyo/60842cbd95b52cbe94e5de74fc81e455 to your computer and use it in GitHub Desktop.
Save kotoripiyopiyo/60842cbd95b52cbe94e5de74fc81e455 to your computer and use it in GitHub Desktop.
[記念メモ]はじめて自分で考えて書いたPythonコード
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
i=0
x=np.arange(1,11)
y=np.zeros(10)
while i <=9:
y[i]=np.random.uniform(1,10)
i +=1
plt.plot(x,y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment