在Seaborn中,diag_kind參數(shù)用于指定對角線上的繪圖類型,主要用于PairGrid對象和pairplot函數(shù)中。其常用取值包括:
例如,可以通過設(shè)置diag_kind參數(shù)為"hist"來在PairGrid對象中對角線上繪制直方圖:
import seaborn as sns
import matplotlib.pyplot as plt
iris = sns.load_dataset("iris")
g = sns.PairGrid(iris)
g.map_diag(sns.histplot, diag_kind="hist")
plt.show()