Convert list to numpy.ndarray
l_2d = [[0, 1, 2], [3, 4, 5]]
arr_2d = np.array(l_2d)
print(arr_2d)
# [[0 1 2]
# [3 4 5]]
source: numpy_ndarray_list.py
Multi-dimensional list are just nested lists (list of lists), so it doesn't matter if the number of elements in the list doesn't match.
However, passing it to numpy.array() creates numpy.ndarray whose elements are built-in list.
단순 리스트 하나인 경우 np.ndarray()를 사용하여 리스트를 간단하게 ndarray로 변환할 수 있다. 그러나 싱글 리스트가 아닌 nested 리스트인 경우 np.array()를 사용해야 ndarray로 변환이 가능하다.
Author And Source
이 문제에 관하여(Convert list to numpy.ndarray), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@flawednworthy/Convert-list-to-numpy.ndarray저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)