我有一个pd.DataFrame,我想绘制并拟合一条钟形曲线。我得到了直方图的绘图。我如何拟合钟形曲线?
wordfreq = pd.DataFrame(columns=vocab, index = authors, data = rates)
wordfreq.hist(column='the', grid = False, normed = True, color = '#9ebcda')[:25]
plt.rcParams['axes.facecolor'] = 'white'
plt.title("use of 'the' women")
答案 0 :(得分:1)
您可以将seaborn包用作:
seaborn.distplot(wordfreq[column])
答案 1 :(得分:1)
钟形曲线仅由两个参数mean
和variance
定义,您可以通过numpy.mean
和numpy.std
轻松计算
如果您只想在没有任何参数设置的情况下进行内核密度估算,请使用seaborn
和distplot(data = wordfreq[column])