일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 파이썬
- 티스토리 초보자 팁
- 구글애널리틱스
- seaborn
- sklearn
- GA4
- GA
- conda install error
- mlxtend
- nearestneighbor
- catplot
- Python
- pathlib
- resolve()
- 힙큐
- 패키지 설치
- Apriori
- transcript
- heapq
- dataanalysis
- associationrule
- cnn student news
- 설치에러
- knn
- counterfactual
- PCAcorr
- 영어 팟캐스트
- 힙정렬
- Path parent
- NN
- Today
- Total
목록Python (2)
데이터, 그로스 마케팅 연구와 기록
pathlib 에서 주로 사용하는 메소드 pathlib.Path는 경로를 객체로 지정할 때 사용한다. Path.resolve() : resolve 메소드는 파일이 존재하는 전체 full 디렉토리를 말한다. 절대적인 경로를 찾는다. .parent 메소드는 지금 파일이 있는 디렉토리 혹은 path로 지정한 경로보다 상위 디렉토리이다. Path('.').resolve().parent : 따라서 Path에서 지정한 '현재 디렉토리' 보다 상위 디렉토리를 가리킨다. Path 뒤에 /' ' 으로 경로를 직접 붙여서 입력할 수 있다. 메소드 연습 from pathlib import Path print(Path('.').resolve()) print(Path(&..
chart visualization 에 자주사용하는 seaborn.catplot seaborn.pairplot 종류 Categorical scatterplots: stripplot() (with kind="strip"; the default) swarmplot() (with kind="swarm") Categorical distribution plots: boxplot() (with kind="box") violinplot() (with kind="violin") boxenplot() (with kind="boxen") Categorical estimate plots: pointplot() (with kind="point") barplot() (with kind="bar") countplot() (wit..