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
The simples way to generate this graph is with seaborn:
import seaborn as sns sns.ecdfplot()
Here is the documentation:
enter link description here