cumulative distribution plots python

前端 未结 5 1507
刺人心
刺人心 2020-12-13 02:37

I am doing a project using python where I have two arrays of data. Let\'s call them pc and pnc. I am required to plot a cumulative distribution of both of

5条回答
  •  清歌不尽
    2020-12-13 03:07

    The simples way to generate this graph is with seaborn:

    import seaborn as sns
        
    sns.ecdfplot()
    

    Here is the documentation:

    enter link description here

提交回复
热议问题