时间:2022-12-05 12:53:09 | 栏目:Python代码 | 点击:次
如下所示:
<span style="font-size:18px;"> </span>
import numpy as np import seaborn as sns import matplotlib.pyplot as plt np.random.seed(sum(map(ord, 'axis_grids'))) tips = sns.load_dataset('tips') tips.head() # 将FacetGrid实例化出来 g = sns.FacetGrid(tips, col='time') g.map(plt.hist, 'tip') # 散点图把数据描绘出来 alpha透明程度,越小越透明 g = sns.FacetGrid(tips, col='sex', hue='smoker') g.map(plt.scatter, 'total_bill', 'tip', alpha=.1) g.add_legend() plt.show()
在代码最后加上plt.show( )即可。