如何在python中用ggplot2绘制系列数据?

时间:2019-04-07 06:51:08

标签: python ggplot2 visualization

我想用python中的ggplot2可视化一些系列数据。 例如,如果有一些系列,

some_list = [1, 2, 3, 4, 5]
some_series = pd.Series(some_list, index=['a', 'b', 'c', 'd', 'e'])

我想可视化每个['a','b','c','d','e']的计数[1、2、3、4、5]。图的x轴为alpha,y轴为计数。我该怎么办?

0 个答案:

没有答案