Python numpy 파이썬 넘파이 r_ , c_
파이썬 넘파이의 r_, c_ 에 대해 설명하고자 한다. 데이터 전처리 과정에서 여러 행렬을 column으로 이어 붙이기 위해 numpy.c_을 사용하곤 한다. numpy.c_ 의 정확한 정의는 다음 document를 보면 알 수 있다. https://docs.scipy.org/doc/numpy/reference/generated/numpy.c_.html numpy.c_ — NumPy v1.17 Manual Translates slice objects to concatenation along the second axis. This is short-hand for np.r_['-1,2,0', index expression], which is useful because of its common occurren..
2020.01.09