ISNAN

    NumPy 검색

    numpy.where numpy.where(condition[, x, y]) : Return elements chosen from x or y depending on condition. condition : 검색에 사용될 조건. x : condition이 True에 해당하는 위치에 지정되는 값 또는 array (검색에 사용된 ndarray로 broadcast처리 가능한 shape이어야 함) y : condition이 False에 해당하는 위치에 지정되는 값 또는 array (검색에 사용된 ndarray로 broadcast처리 가능한 shape이어야 함) 반환값 x,y를 설정해준 경우엔 조건에 따라 해당 값으로 채워진 ndarray임. 아닌 경우, condition에 True에 해당하는 위치의 idx. n..