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
- 독후감
- Ga
- Linux
- 한빛미디어
- 월간결산
- 딥러닝
- 통계학
- Tistory
- 티스토리
- 한빛미디어서평단
- MySQL
- Google Analytics
- MATLAB
- 파이썬
- Visualization
- 시각화
- 리눅스
- python visualization
- 파이썬 시각화
- 텐서플로
- 매틀랩
- Blog
- 블로그
- Python
- 서평
- tensorflow
- matplotlib
- 서평단
- SQL
- Pandas
Archives
- Today
- Total
목록python 신뢰도 (1)
pbj0812의 코딩 일기
[PYTHON] fill_between 을 이용한 신뢰구간을 포함한 lineplot 구현하기
0. 목표 - fill_between 을 이용한 신뢰구간을 포함한 lineplot 구현하기 1. seaborn 의 lineplot import seaborn as sns flights = sns.load_dataset("flights") sns.lineplot(data=flights, x="year", y="passengers") 2. 구현하기 0) library 호출 import seaborn as sns import matplotlib.pyplot as plt import math 1) 데이터 확인 flights.head() 2) 변수 생성 - flights_mean : 연도별 탑승자 평균 - flights_year : 연도 - flights_len : 연도별 데이터 길이 flights_mean = ..
ComputerLanguage_Program/PYTHON
2021. 8. 6. 22:56