BookmarkSubscribeRSS Feed
pablorodriguez1
Calcite | Level 5

I am trying to find a functino that find the best-fit function according to some data points that I have. I am doing that with proc nlin, and have succeeded at computing it with a logarithmic model function. Currently I am trying to do it with a different model function* but I haven't managed to make it work.

 

I think I may be inputting the function with the wrong expression.

 

* The model function is the Weibull distribution whose expression is f(t) = 1 - e^(-(t/a)^b);

PROC NLIN DATA=aux_&s
	MAXITER=500
	CONVERGE=1E-05
	SINGULAR=1E-08
	MAXSUBIT=30
	OUTEST=coeficientes_segmento&s 
NOITPRINT ; model segmento11 = (1 - (EXP(-(t/a)**b))); *Weibull distribution function; ; PARMS a=0.4 b=0.5 ; RUN;
1 REPLY 1

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1066 views
  • 0 likes
  • 2 in conversation