フィルターのクリア

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

6 ビュー (過去 30 日間)
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 件のコメント
Torsten
Torsten 2023 年 12 月 8 日
編集済み: Torsten 2023 年 12 月 8 日
Surendra Ratnu
Surendra Ratnu 2023 年 12 月 9 日
編集済み: Surendra Ratnu 2023 年 12 月 9 日
@Paul It is true P(n,x) = 0 for x<0.

サインインしてコメントする。

回答 (2 件)

Torsten
Torsten 2023 年 12 月 8 日
編集済み: Torsten 2023 年 12 月 8 日
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 件のコメント
Torsten
Torsten 2023 年 12 月 13 日
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 2023 年 12 月 14 日
Thank you for your inout. It's works. How can i know the goodness of the distribution fit if i fit using mle??

サインインしてコメントする。


John D'Errico
John D'Errico 2023 年 12 月 12 日
編集済み: John D'Errico 2023 年 12 月 12 日
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 件のコメント
Surendra Ratnu
Surendra Ratnu 2023 年 12 月 13 日
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 2023 年 12 月 13 日
I think writing one's own code to solve a problem is great way to learn. The "professional" code can be used for comparison.

サインインしてコメントする。

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by