Is there a way to plot a pandas series in ggplot?

后端 未结 2 973
不知归路
不知归路 2021-02-06 15:53

I\'m experimenting with pandas and non-matplotlib plotting. Good suggestions are here. This question regards yhat\'s ggplot and I am running into two issues. Plotting a series

2条回答
  •  醉梦人生
    2021-02-06 15:58

    This is more of a workaround but you can use qplot for quick, shorthand plots using series.

    from ggplot import *
    qplot(meat.beef)
    

提交回复
热议问题