Numpy 기초 8편

1. boolean index

 

boolean array를 넣어 array를 추출함

 

condition을 넣어 condition에 맞는 array를 추출하는 방식

 

etc-image-0
그림1. boolean array 예시

 

2. fancy index

 

index array를 넣어 해당 index에 맞는 값들을 추출

 

etc-image-1
그림2. fancy index 예시

 

index는 int로 선언해야 index로 인식함

 

etc-image-2
그림3. matrix도 fancy indexing이 가능

 

3. data in&out

 

loadtxt로 텍스트 파일을 열고 savetxt로 저장함

 

astype()은 원하는 type으로 바꿔줌

 

etc-image-3
그림4. txt 파일을 읽고 astype으로 int로 변환하고 txt 파일을 세이브

 

np.save를 통해 array를 pickle형태로 저장하고 다시 불러올 수 있음 <persistence>

 

array를 처음부터 다시 만들기 까다로울 때,

 

예상치 못한 상황이 발생할 때를 대비해서  저장해놓고 사용하면 편할 수 있음

 

etc-image-4
그림5. pickle로 array를 저장하고 다시 load함

 

728x90

'프로그래밍 > Numpy' 카테고리의 다른 글

Numpy 기초 7편  (0) 2021.12.01
Numpy 기초 6편  (0) 2021.11.30
Numpy 기초 5편  (0) 2021.11.29
Numpy 기초 4편  (0) 2021.11.29
Numpy 기초 3편  (0) 2021.11.28