728x90
넘파이 (Numpy) Numpy.c_
- Translates slice objects to concatenation along the second axis.
- 2개의 배열을 붙여 2차원 배열로 만들기
>>> np.c_[np.array([1,2,3]), np.array([4,5,6])]
array([[1, 4],
[2, 5],
[3, 6]])
>>> np.c_[np.array([[1,2,3]]), 0, 0, np.array([[4,5,6]])]
array([[1, 2, 3, 0, 0, 4, 5, 6]])
https://docs.scipy.org/doc/numpy-1.15.0/reference/generated/numpy.c_.html?highlight=numpy%20c_#numpy.c_
728x90
'programming language > Python' 카테고리의 다른 글
[Python] Colab Selenium - 코랩 셀리니움 사용법 (0) | 2020.11.26 |
---|---|
[Python] 파이썬 넘파이 (Numpy) - numpy.log1p() / numpy.expm1() (0) | 2020.10.22 |
[Python] 넘파이 (Numpy) - 공부하기_random sampling.1 (0) | 2020.10.20 |
[python] 파이썬 판다스 - python pandas - pd.cut() (0) | 2020.10.12 |
[python] 판다스 날짜 데이터 타입 변환 - pandas / to_datetime() (2) | 2020.10.08 |