Finding fit parameters for x,y data of a lognormal cdf

25 vues (au cours des 30 derniers jours)
David
David le 26 Mar 2015
Commenté : Alsc le 10 Oct 2019
Hi,
I have x, y vector data where x = some independent variable of interest and y = cumulative probability. I know the resulting curve represents a lognormal cdf but I'm having trouble finding a way to find the location and scale parameters that correspond to it.
My initial thought was to simply take the cdf, convert it to a pdf by taking p(ii) = y(ii+1) - y(ii), and then use the frequency option of lognfit to find the parameters. I do not get the correct result from this though and was wondering if anyone else had any ideas. Example code is below. Thanks!
if true
% code
end
X = 1:200;
Y = logncdf(X,4.5,0.1); %4.5 and 0.1 are just for illustration, in reality I don't know these parameters.
for ii = 1:length(X)-1
P(ii) = Y(ii+1)-Y(ii);
end
P(200) = 1 - Y(end);
fit = lognfit(X,[],[],P)
The location parameter I get from this example is correct, but the scale parameter is 0.

Réponse acceptée

David
David le 26 Mar 2015
I think I answered my own question by going a different route. See code below.
X = 1:200;
Y = logncdf(X,4.5,0.1);
func = @(fit,xdata)logncdf(xdata,fit(1),fit(2));
fit = lsqcurvefit(func,[4 0.3],X,Y)
This gives me fit parameters of
fit =
4.5000 0.1000
  4 commentaires
Star Strider
Star Strider le 27 Mar 2015
You already accepted your own answer, so I’ll delete mine.
It isn’t as difficult a problem as you’re making it. In fact, you’re using the wrong approach. You need to understand the lognormal distribution, then the solution is straightforward:
D = load('David SampleData.mat');
x = D.X;
p = D.P;
prms = @(b,x) logncdf(x,b(1),b(2));
init_prms = interp1(p, x, [0.5 0.025]);
B0 = [log(init_prms(1)) -diff(init_prms)/init_prms(1)];
B = nlinfit(x,p,prms,B0);
lncdfit = prms(B,x);
figure(1)
plot(x, p, 'bp')
hold on
plot(x, lncdfit, '-r')
hold off
grid
produces:
Alsc
Alsc le 10 Oct 2019
Well, I guess I haven't understood this well enough when I have to ask this question, but,
where do I get the goodness of fit and fit parameters from this?

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by