#1 행별, 열별 합
#2 행별, 열별 최대값
#3 행별, 열별 최소값
#4 행별, 열별 평균
#1 행별, 열별 합
import numpy as np
temp_list = [[1,3,5,7,9], [2,4,6,8,10]]
temp_np_array = np.array(temp_list)
print(temp_np_array, temp_np_array.shape)
print(temp_np_array.sum(axis=1))
print(temp_np_array.sum(axis=0))
#2 행별, 열별 최대값
import numpy as np
temp_list = [[1,3,5,7,9], [2,4,6,8,10]]
temp_np_array = np.array(temp_list)
print(temp_np_array, temp_np_array.shape)
print(temp_np_array.max(axis=1))
print(temp_np_array.max(axis=0))
#3 행별, 열별 최소값
import numpy as np
temp_list = [[1,3,5,7,9], [2,4,6,8,10]]
temp_np_array = np.array(temp_list)
print(temp_np_array, temp_np_array.shape)
print(temp_np_array.min(axis=1))
print(temp_np_array.min(axis=0))
#4 행별, 열별 평균
import numpy as np
temp_list = [[1,3,5,7,9], [2,4,6,8,10]]
temp_np_array = np.array(temp_list)
print(temp_np_array, temp_np_array.shape)
print(temp_np_array.mean(axis=1))
print(temp_np_array.mean(axis=0))
'Programming Language > Python' 카테고리의 다른 글
[Python] Numpy 행별 합계값을 기존 배열에 추가하는 방법 (0) | 2023.07.25 |
---|---|
[Python] Numpy Array 두개 합치는 방법 (0) | 2023.07.25 |
[Python] Numpy 모든 요소의 max, min, sum, mean 구하는 방법 (0) | 2023.07.25 |
[Python] 1차원,2차원,3차원 리스트를 numpy array로 변경하는 방법 (0) | 2023.07.25 |
[Python] numpy로 랜덤 데이터 고정하는 방법 (0) | 2023.07.25 |