Seaborn으로 시각화 테마 설정하기
Seaborn은 파이썬의 시각화 라이브러리 중 하나로, Matplotlib을 기반으로 한 색상 팔레트와 스타일을 제공하여 데이터 시각화를 더욱 쉽고 세련되게 할 수 있습니다. Seaborn을 사용하여 시각화 테마를 설정하는 방법에 대해 알아보겠습니다.
1. Seaborn 설치하기
Seaborn은 pip를 사용하여 설치할 수 있습니다. 다음 명령어를 사용하여 Seaborn을 설치하세요.
pip install seaborn
2. Seaborn으로 시각화 테마 설정하기
Seaborn을 import 한 후, set_theme()
함수를 사용하여 시각화 테마를 설정할 수 있습니다. Seaborn은 기본적으로 여러 가지 테마를 제공하며, 간단히 함수를 호출하여 바로 적용할 수 있습니다.
import seaborn as sns
sns.set_theme() # 기본 테마 설정
기본 테마를 외에도 Seaborn은 darkgrid, whitegrid, dark, white 등 다양한 테마를 제공합니다. 아래는 각각의 테마를 설정하는 예시입니다.
sns.set_theme(style="darkgrid") # darkgrid 테마 설정
sns.set_theme(style="whitegrid") # whitegrid 테마 설정
sns.set_theme(style="dark") # dark 테마 설정
sns.set_theme(style="white") # white 테마 설정
3. 그래프 그리기
Seaborn으로 테마를 설정한 후 Matplotlib을 사용하여 그래프를 그릴 수 있습니다. 아래는 Seaborn 테마를 설정하고 히스토그램을 그리는 예시입니다.
import matplotlib.pyplot as plt
import seaborn as sns
sns.set_theme()
data = [6, 4, 3, 8, 2, 9, 5, 1, 7, 10]
sns.histplot(data)
plt.show()
4. 참고 자료
- Seaborn 공식 문서: https://seaborn.pydata.org/
- Seaborn 테마 예시: https://seaborn.pydata.org/tutorial/aesthetics.html
#datavisualization #seaborn