Seaborn プロットにタイトルを追加する方法 (例付き)
単一の海洋プロットにタイトルを追加するには、 .set()関数を使用できます。
たとえば、箱ひげ図にタイトルを追加する方法は次のとおりです。
sns. boxplot (data=df, x=' var1 ', y=' var2 '). set (title=' Title of Plot ')
海洋ファセット プロットにグローバル タイトルを追加するには、 .suptitle()関数を使用できます。
たとえば、グローバル タイトルを relplot に追加する方法は次のとおりです。
#define relplot rel = sns. relplot (data=df, x=' var1 ', y=' var2 ', col=' var3 ') #add overall title to replot rel. fig . suptitle (' Overall Title ')
次の例は、これらの関数を実際に使用する方法を示しています。
例 1: 単一の Seaborn プロットにタイトルを追加する
次のコードは、Seaborn 箱ひげ図にタイトルを追加する方法を示しています。
import pandas as pd import seaborn as sns import matplotlib. pyplot as plt #create fake data df = pd. DataFrame ({' points ': [25, 12, 15, 14, 19, 23, 25, 29], ' assists ': [5, 7, 7, 9, 12, 9, 9, 4], ' team ': ['A', 'A', 'A', 'A', 'B', 'B', 'B', 'B']}) #create boxplot sns. boxplot (data=df, x=' team ', y=' points '). set (title=' Points by Team ')
次のコードは、海洋散布図にタイトルを追加する方法を示しています。
sns. scatterplot (data=df, x=' points ', y=' assists '). set (title=' Points vs. Assists ')
次のコードは、Seaborn regplot にタイトルを追加する方法を示しています。
sns. regplot (data=df, x=' points ', y=' assists '). set (title=' Points vs. Assists ')
例 2: Seaborn Face プロットにグローバル タイトルを追加する
次のコードは、Seaborn ファセット プロットにタイトルを追加する方法を示しています。
import pandas as pd import seaborn as sns import matplotlib. pyplot as plt #create fake data df = pd. DataFrame ({' points ': [25, 12, 15, 14, 19, 23, 25, 29], ' assists ': [5, 7, 7, 9, 12, 9, 9, 4], ' team ': ['A', 'A', 'A', 'A', 'B', 'B', 'B', 'B']}) #create relplot rel = sns. relplot (data=df, x=' points ', y=' assists ', col=' team ') #add overall title rel. fig . suptitle (' Stats by Team ')
subplots_adjust()引数を使用して、個々のプロットに干渉しないように、全体のタイトルを少し上に移動することもできます。
#create relplot rel = sns. relplot (data=df, x=' points ', y=' assists ', col=' team ') #move overall title up rel. fig . subplots_adjust (top= .8 ) #add overall title rel. fig . suptitle (' Stats by Team ')
追加リソース
Seaborn プロットの図のサイズを調整する方法
Seaborn でレジェンドの位置を変更する方法
Seaborn プロットの軸ラベルを変更する方法