numpy배열의 자료형을 변환해주는 함수
y1 = np.array([-1.0, 2.0, 3.0]) y2 = y1.astype(np.int) print(y1) print(y2)
[-1. 2. 3.] [-1 2 3]