Seaborn
使用 Seaborn 可视化分布
Seaborn 是一个库,它使用 Matplotlib 绘制图形。它将用于可视化随机分布。
安装 Seaborn。
如果您的系统上已经安装了Python 和PIP,请使用以下命令安装它
C:\Users\您的用户名>pip install seaborn
如果您使用 Jupyter,请使用以下命令安装 Seaborn
C:\Users\您的用户名>!pip install seaborn
Distplots
Distplot 代表分布图,它以数组作为输入,并绘制与数组中点分布相对应的曲线。
导入 Matplotlib
使用以下语句在您的代码中导入 Matplotlib 模块的 pyplot 对象import matplotlib.pyplot as plt
您可以在我们的Matplotlib 教程中了解有关 Matplotlib 模块的信息。
导入 Seaborn
使用以下语句在您的代码中导入 Seaborn 模块import seaborn as sns
绘制 Distplot
示例
import matplotlib.pyplot as plt
import seaborn as sns
sns.distplot([0, 1, 2, 3, 4, 5])
plt.show()
自己试试 »
绘制不带直方图的 Distplot
示例
import matplotlib.pyplot as plt
import seaborn as sns
sns.distplot([0, 1, 2, 3, 4, 5], hist=False)
plt.show()
自己试试 »
注意:在本教程中,我们将使用:sns.distplot(arr, hist=False)
来可视化随机分布。