NumPy.unique()
CODEDRAGON ㆍDevelopment/Python
반응형
unique()
· unique() 명령은 데이터에서 중복된 값을 제거하고 중복되지 않는 값의 리스트를 출력합니다.
· unique() 명령은 데이터에 존재하는 값에 대해서만 갯수를 세므로 데이터 값이 나올 수 있음에도 불구하고 해당 데이터가 하나도 없는 경우에는 출력되지 않습니다.
numpy.unique(ar, return_index=False, return_inverse=False, return_counts=False, axis=None)[source] |
인자 |
설명 |
return_counts |
True 로 설정하면 각 값을 가진 데이터 갯수도 출력합니다. |
https://docs.scipy.org/doc/numpy/reference/generated/numpy.unique.html
'Development > Python' 카테고리의 다른 글
키워드 인수(Named Parameter) (0) | 2018.07.03 |
---|---|
install Seaborn (0) | 2018.07.02 |
Python - twitter API로 친구목록 가져오기 (0) | 2018.07.01 |
VISUALIZE CODE AND GET LIVE HELP - Python, Java, C, C++, JavaScript, Ruby (0) | 2018.07.01 |
pprint 패키지 (0) | 2018.06.29 |