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
- 블로그
- 티스토리
- Python
- 파이썬
- 시각화
- Visualization
- 한빛미디어
- Linux
- Google Analytics
- Pandas
- SQL
- 한빛미디어서평단
- 딥러닝
- 서평단
- 파이썬 시각화
- MATLAB
- MySQL
- 통계학
- 독후감
- Tistory
- 서평
- python visualization
- Ga
- 월간결산
- 텐서플로
- Blog
- 리눅스
- tensorflow
- 매틀랩
- matplotlib
Archives
- Today
- Total
목록python vertical line (1)
pbj0812의 코딩 일기

0. 목표 - 상자 그림(box plot) 구현하기 1. Seaborn 의 box plot 예제 import seaborn as sns tips = sns.load_dataset("tips") ax = sns.boxplot(y=tips["total_bill"]) 2. 실습 1) x 데이터 추가 - 추후 x 좌표로 사용 tips['x'] = 1 2) 정렬 t = sorted(list(tips['total_bill'])) 3) 분위수 계산 - 13.28, 17.78, 24.08 q1_index = int(len(t) * 0.25) q2_index = int(len(t) * 0.5) q3_index = int(len(t) * 0.75) q1 = t[q1_index - 1] q2 = t[q2_index - 1]..
ComputerLanguage_Program/PYTHON
2021. 8. 3. 03:43