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