Notice
Recent Posts
Recent Comments
Link
관리 메뉴

뛰는 놈 위에 나는 공대생

[Python] Numpy 라이브러리(2) 본문

프로그래밍 Programming/파이썬 Python

[Python] Numpy 라이브러리(2)

보통의공대생 2021. 3. 27. 13:02

File Input and Output with Arrays

 

Numpy array가 매우 클 경우에는 저장하고 다시 불러올 수 있다.

np.save는 저장

np.load는 저정한 array 불러오기

np.save('some_array', arr)
np.load('some_array.npy')

 

텍스트를 불러들이는 것

np.loadtxt

np.savetxt 

 

 

Random Number Generation

 

np.random.normal

np.random.binormal

np.random.randint(0,10,100) : 0에서 10 사이의 100개

 

np.random.seed로 seed를 설정할 수 있다.

 

np.random에 속해있는 함수들

Comments