Seaborn


使用 Seaborn 可视化分布

Seaborn 是一个使用 Matplotlib 来绘制图表的库。它将用于可视化随机分布。

安装 Seaborn。

如果你有Python画中画已安装在系统上,请使用以下命令安装:

C:\Users\ Your Name>pip install seaborn

如果您使用 Jupyter,请使用以下命令安装 Seaborn:

C:\Users\ Your Name>!pip install seaborn

分布图

Distplot 代表分布图,它以数组作为输入,并绘制与数组中点的分布相对应的曲线。


导入 Matplotlib

import matplotlib.pyplot as plt

您可以在我们的中了解 Matplotlib 模块Matplotlib 教程


ImportSeaborn

import seaborn as sns

绘制分布图

示例

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)在本教程中可视化随机分布。