Filter löschen
Filter löschen

How can obtain the probability density function for a random discreate set of data and fit a custom distribution function ??

6 Ansichten (letzte 30 Tage)
I have random data. I want to calculate the probability density function. I also fit a custom distribution function which is the where gamma is the gamma function of n and n is the distribution parameter and x is the variable.
I attached the data. Can you provide the solution for this ??
  5 Kommentare

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Torsten
Torsten am 8 Dez. 2023
Bearbeitet: Torsten am 8 Dez. 2023
Use "histogram" to plot the empirical probability density function for your data and use "mle" to estimate n.
Why are there so many data repeated multiple times ? Did you create them artificially ?
  8 Kommentare
Torsten
Torsten am 13 Dez. 2023
x = xlsread('temp_data.xlsx');
pdf = @(x,n)n^n/gamma(n) * x.^(n-1) .* exp(-n*x);
[phat,pci] = mle(x,'pdf',pdf,'Start',1)
phat = 3.3776
pci = 2×1
3.1120 3.6431
hold on
h = histogram(x);
h.Normalization = 'pdf';
y = linspace(0,max(x),100);
plot(y,pdf(y,phat))
hold off
Surendra Ratnu
Surendra Ratnu am 14 Dez. 2023
Thank you for your inout. It's works. How can i know the goodness of the distribution fit if i fit using mle??

Melden Sie sich an, um zu kommentieren.


John D'Errico
John D'Errico am 12 Dez. 2023
Bearbeitet: John D'Errico am 12 Dez. 2023
Can you write custom code to fit a PDF to data? Yes. It is not that truly difficult, if you know what you are doing. HOWEVER, SHOULD you write custom code to fit a PDF using maximum likelihood estimation? NO. It already exists in MATLAB, Use those codes. Writing your own code to do something already provided to you is a bad idea. If you don't have a clue what you are doing and don't have the skills in such things, then your result will be poor. Use code provided to you by professionals. Even there, you can have problems if you use the code incorrectly or provide it bad data that does not fit the distribution, but at least you give yourself a chance of success.
Now, does your data have a problem? YES. It is not at all random looking. In fact, what you have is not even a set of samples from a distribution, but apparently a cumulative histogram of sorts.
x = xlsread('temp_data.xlsx');
plot(x)
In there I see what appears to be stairsteps in your "data". So these are not samples from a continuous distribution. For example, the first 54 points in that vector are identical. It is not clear how you generated this data, which you claim to have measured.
So first, you need to explain what you have in that data set. How you created it.
  2 Kommentare
Surendra Ratnu
Surendra Ratnu am 13 Dez. 2023
Actually, Data are droplet size of the spray. I measured the drop size of spray using some software. The spray created identical drop size that why the data are in repeatative manner.
Paul
Paul am 13 Dez. 2023
I think writing one's own code to solve a problem is great way to learn. The "professional" code can be used for comparison.

Melden Sie sich an, um zu kommentieren.

Produkte


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by