Seaborn 플롯에서 글꼴 크기를 변경하는 방법(예제 포함)
다음 기본 구문을 사용하여 Seaborn 플롯의 글꼴 크기를 변경할 수 있습니다.
import seaborn as sns sns. set (font_scale= 2 )
Font_scale 의 기본값은 1입니다. 이 값을 늘리면 플롯에 있는 모든 요소의 글꼴 크기를 늘릴 수 있습니다.
다음 예에서는 이 구문을 실제로 사용하는 방법을 보여줍니다.
예 1: Seaborn 플롯에 있는 모든 요소의 글꼴 크기 변경
다음 코드는 기본 글꼴 크기를 사용하여 Seaborn에서 간단한 꺾은선형 차트를 만드는 방법을 보여줍니다.
import pandas as pd import matplotlib. pyplot as plt import seaborn as sns #createDataFrame df = pd. DataFrame ({' date ': ['1/1/2021', '1/30/2021', '1/1/2021', '1/30/2021'], ' sales ': [4, 11, 6, 18], ' company ': ['A', 'A', 'B', 'B']}) #plot multiple lines sns. lineplot (x=' date ', y=' sales ', hue=' company ', data=df). set (title=' Sales Data ')
다음 코드는 sns.set() 함수를 사용하여 플롯에 있는 모든 요소의 글꼴 크기를 늘리는 방법을 보여줍니다.
import pandas as pd import matplotlib. pyplot as plt import seaborn as sns #increase font size of all elements sns. set (font_scale= 2 ) #createDataFrame df = pd. DataFrame ({' date ': ['1/1/2021', '1/30/2021', '1/1/2021', '1/30/2021'], ' sales ': [4, 11, 6, 18], ' company ': ['A', 'A', 'B', 'B']}) #plot multiple lines sns. lineplot (x=' date ', y=' sales ', hue=' company ', data=df). set (title=' Sales Data ')
각 플롯 요소의 글꼴 크기가 크게 늘어났습니다.
예 2: Seaborn 플롯에서 특정 요소의 글꼴 크기 변경
다음 코드는 Seaborn 플롯에서 특정 요소의 글꼴 크기를 변경하는 방법을 보여줍니다.
import pandas as pd import matplotlib. pyplot as plt import seaborn as sns #createDataFrame df = pd. DataFrame ({' date ': ['1/1/2021', '1/30/2021', '1/1/2021', '1/30/2021'], ' sales ': [4, 11, 6, 18], ' company ': ['A', 'A', 'B', 'B']}) #plot multiple lines sns. lineplot (x=' date ', y=' sales ', hue=' company ', data=df) #modify individual font size of elements plt. legend (title=' Company ', fontsize= 20 ) plt. xlabel (' Date ', fontsize= 16 ); plt. ylabel (' Sales ', fontsize= 16 ); plt. title (' Sales Data ', fontsize= 20 ) plt. tick_params (axis=' both ', which=' major ', labelsize= 14 )
플롯의 각 요소는 글꼴 크기 인수에 지정된 값을 기반으로 고유한 글꼴 크기를 갖습니다.
추가 리소스
다음 튜토리얼에서는 Seaborn에서 다른 일반적인 작업을 수행하는 방법을 설명합니다.
단일 그림에 여러 Seaborn 플롯을 생성하는 방법
Seaborn에서 범례의 위치를 변경하는 방법
Seaborn 플롯에 제목을 추가하는 방법