[seaborn] 그래프 설정
2020. 2. 5. 05:04ㆍBIG DATA/Big Data
반응형
seaborn을 통해 데이터의 시각화 분석을 할 때 조정할 수 있는 설정을 보자.
seaborn 호출
%matplotlib inline
import seaborn as sns
그래픽 스타일 설정
- style
- whitegrid
- darkgrid
sns.set(style='whitegrid')
그래프 사이즈 설정
import matplotlib.pyplot as plt
plt.figure(figsize=(15, 5))
반응형
'BIG DATA > Big Data' 카테고리의 다른 글
빅데이터 - 데이터 분석 유형 (0) | 2021.11.13 |
---|---|
빅데이터 - 데이터 분석 (0) | 2021.11.13 |
[pandas] 데이터 출력 시 중복 값 제거하고 출력하기 (0) | 2020.02.05 |
R vs Python (0) | 2020.01.19 |