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
- Visualization
- Linux
- 서평단
- 시각화
- 티스토리
- SQL
- MATLAB
- 블로그
- Pandas
- Ga
- Google Analytics
- 통계학
- 매틀랩
- MySQL
- 텐서플로
- matplotlib
- Blog
- 독후감
- 한빛미디어
- 서평
- tensorflow
Archives
- Today
- Total
목록displot (1)
pbj0812의 코딩 일기
[PYTHON] displot, histplot 크기 조정하기
0. 목표 - displot, histplot 크기 조정하기 1. 실습 1) library 호출 - figure size 미리 조정 * seaborn version update 필요 : pip install seaborn==0.11.1 import matplotlib.pyplot as plt import seaborn as sns sns.set(rc={'figure.figsize':(15, 5)}) import pandas as pd 2) iris 데이터셋 로드 df = sns.load_dataset('iris') 3) distplot - 없어질거라고 한다. sns.distplot(df['sepal_length']) 4) histplot - 크기가 잘 맞춰 나온다. sns.histplot(df['sepa..
ComputerLanguage_Program/PYTHON
2021. 6. 18. 00:06