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