我正在使用带有散景后端的全息视图进行交互式可视化。我有一个带有边缘和频率数据的直方图。用累积分布 (cdf) 曲线覆盖直方图的优雅方法是什么?
我尝试使用该cumsum
选项,hv.dim
但不认为我做对了。帮助只是说,
Help on function cumsum in module holoviews.util.transform:
cumsum(self, **kwargs)
我的代码看起来像,
df_hist = pd.DataFrame(columns=['edges', 'freq'])
df_hist['edges'] = [-2, -1, 0, 1, 2]
df_hist['freq'] = [1, 3, 5, 3, 1]
hv.Histogram((df_hist.edges, df_hist.freq))
结果是直方图。
有没有类似...
hv.Histogram((df_hist.edges, df_hist.freq), type='cdf')
...显示累积分布?