How to obtain CDF from large dataset?

3 visualizzazioni (ultimi 30 giorni)
Tania Islam
Tania Islam il 7 Nov 2019
I have a dataset of containing 10000 values.
I want to generate their CDF and want to plot them figure.
How can I do that?
This is the sample image.
untitled.jpg

Risposte (1)

Bjorn Gustavsson
Bjorn Gustavsson il 7 Nov 2019
Have a look at the help and documentation of the function ksdensity - that is one way to do this with the least amount of assumptions on the CDF.
HTH
  2 Commenti
Tania Islam
Tania Islam il 7 Nov 2019
By using ksdensity , I got the sample figure in the questions. But when I am testing it with the small data. its looks like, its not working perfectly.
Moreover, figure legend is not working when I am using ksdensity.
Currently I am using the following command. But I am not sure, is it the right way or not?
figure(3)
ksdensitydataset,'Support','positive','Function','cdf','NumPoints',50)
Bjorn Gustavsson
Bjorn Gustavsson il 7 Nov 2019
The problem with the "legend not working" you solve by calling ksdensity with output-parameters and plot yourself - that way you get the normal handles to the lines and legend will work fine.
The reason that "it is not working perfectly" sounds like you have too few points for ksdensity to estimate a smooth CDF - if you have too few points then you will not get as good an estimate...

Accedi per commentare.

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by