[Python] Series 유니크 값
[Python] Series 유니크 값
Reference
Pandas In Action1. 유니크값
1
2
3
4
5
6
7
8
9
10
11
import pandas as pd
calories_info = {
'Protein Bar' : 125,
'Salade' : 215,
'Chocolate Bar' : 406,
'Chicken Breast' : 125
}
diet = pd.Series(calories_info)
diet
1
2
3
4
5
Protein Bar 125
Salade 215
Chocolate Bar 406
Chicken Breast 125
dtype: int64
1-1. 유니크 값의 개수를 포함하는 Series 반환 :: Series.value_counts( )
1
2
3
4
5
Series.value_counts(
sort = True, # True : 정렬 O | False : 정렬 X
ascending = False, # True : 내림차순 | False : 오름차순
dropna = True # True : NaN 포함 X | False : NaN
)
- 유니크 값의 개수를 포함하는 Series를 반환
- Option
- sort : 정렬 여부
- ascending : 정렬 오름차순 or 내림차순 여부
- dropna : NaN의 수를 포함 여부
1
diet.value_counts() # diet의 각 유니크 값의 개수를 반환
1
2
3
4
125 2
215 1
406 1
dtype: int64
1-2. 고유값(유니크) 값 반환 :: Series.unique( )
1
Series.unique()
- Series의 유니크 값을 반환
- 고윳값이 등잔한 순으로 출력
1
diet.unique() # dite의 유니크 값
1
array([125, 215, 406])
1-3. 유니크 값 갯수 반환 :: Series.nunique( )
1
Series.nunique()
- Series의 유니크 값 개수를 반환
1
diet.nunique() # diet의 유니크 값의 개수
1
3
1-4. 고유값 여부(T/F) 확인 :: Series.is_unique
1
Series.is_unique
- Series중 중복된 값 존재 여부
1
diet.is_unique
1
False
1
pd.Series(data = [1,2,3,4,5]).is_unique
1
True
This post is licensed under CC BY 4.0 by the author.