Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 숫자빼고 중복되는 코드동작법
- 위도경도
- 셀레니움
- 웹크롤링
- #비정형#카카오api#api#크롤링
- #위도#경도#비정형데이터#크롤링
- 파이썬
- 구글 지오코드
- 코딩
- #K-means #Clustering
- #비정형 데이터 #네이버 #지도 #크롤링
- #크롤링 #웹문서
- 웹매크로 #세잔느
- 카카오APi
- 파이썬 셀레니움
Archives
- Today
- Total
지방이의 Data Science Lab
[python] 유저아이디별로 5줄씩만 가져오기 본문
가지고 있는 데이터 프레임에서, 정렬해서 유저별로 상위 5줄씩가져와서 상위 아이템 보려고 할때:
top5 = {} for num, idx in enumerate((pd.unique(lim.index))): print(num/len((pd.unique(kang.index)))) top5[idx] = lim.loc[lambda x: x.index ==idx,'CEM_PRDCD'][0:5]
top5 = pd.concat(top5.values()) |
(굵은 표시 부분은 없어도 무방하다. %로 얼마나 진행됐는지 보고싶었는데, tqdm이 서버에 안깔려있어서 사용 불가했음)
out_dict = {} for key in (pd.unique(top5.index))[0:100]: out_dict[key] = list((pd.DataFrame(top5).loc[lambda x: x.index == key, 'CEM_PRDCD']
pd.DataFrame..from_dict(out_dict, orient='index') |
'Data Analysis > Python' 카테고리의 다른 글
[python] array속 비교 (0) | 2019.07.28 |
---|---|
[python] 날짜에서 연도, 월, 일 추출 (0) | 2019.07.25 |
[python] groupby로 본 데이터를 데이터프레임으로 만들기 (0) | 2019.07.23 |
[python] date형태를 다시 int로 변환 (0) | 2019.07.23 |
[python] 최근날짜에 따라 데이터 추출 (0) | 2019.07.22 |
Comments