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?