有没有办法仅使用Seaborn在Python中绘制Pandas系列的CDF+累积直方图?我有以下内容:importnumpyasnpimportpandasaspdimportseabornassnss=pd.Series(np.random.normal(size=1000))我知道我可以使用s.hist(cumulative=True,normed=1)绘制累积直方图,然后我知道我可以使用sns.kdeplot(s,cumulative=True),但我想要在Seaborn中都可以做到的事情,就像用sns.distplot(s)绘制分布时一样,它给出了kde拟合和直方图。有什么办法
有没有办法仅使用Seaborn在Python中绘制Pandas系列的CDF+累积直方图?我有以下内容:importnumpyasnpimportpandasaspdimportseabornassnss=pd.Series(np.random.normal(size=1000))我知道我可以使用s.hist(cumulative=True,normed=1)绘制累积直方图,然后我知道我可以使用sns.kdeplot(s,cumulative=True),但我想要在Seaborn中都可以做到的事情,就像用sns.distplot(s)绘制分布时一样,它给出了kde拟合和直方图。有什么办法
提供的api说明displotFigure-levelinterfacefordrawingdistributionplotsontoaFacetGrid.图形级界面,用于在FacetGrid上绘制分布图。histplotPlotunivariateorbivariatehistogramstoshowdistributionsofdatasets.绘制单变量或双变量直方图来显示数据集的分布。kdeplotPlotunivariateorbivariatedistributionsusingkerneldensityestimation.使用核密度估计绘制单变量或双变量分布ecdfplotPl
提供的api说明displotFigure-levelinterfacefordrawingdistributionplotsontoaFacetGrid.图形级界面,用于在FacetGrid上绘制分布图。histplotPlotunivariateorbivariatehistogramstoshowdistributionsofdatasets.绘制单变量或双变量直方图来显示数据集的分布。kdeplotPlotunivariateorbivariatedistributionsusingkerneldensityestimation.使用核密度估计绘制单变量或双变量分布ecdfplotPl