2.1.7.5.Grids
0. Grids的繪圖種類
sns.PairGrid
sns.FacetGrid
1. 使用library
import seaborn as sns將圖表直接嵌入到Notebook之中
%matplotlib inline讀入資料
tips = sns.load_dataset('tips')
tips.head()

2.PairGrid

3.FacetGrid

Last updated
Was this helpful?