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

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 809 views
  • 0 likes
  • 2 in conversation