BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Hanyu
Fluorite | Level 6

I have a very large system that has more than 100 parameters. I need to write a module to compute the value of the likelihood function. The first step is to define the parameter vector. Usually parameter is defined as a=parm[1];b=parm[2]. But if I define each parameter like that, it would take too long. I want to follow some rule to define the parameter vector, e.g. according to the data of the company name(microsoft apple sas...). Could any body give me a hint?

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

The parameters to be optimized are passed in as an argument to the objective function. These values represent the parameters in the model that are to be fit to the data. Most models have fewer than a dozen parameters.  You can copy these values to local variables, such as mu=param[1], but you can also use the param vector directly in the MLE equations, such as SUM(param) or SSQ(param) or MEAN(param).  So no, you do not have to copy them to a local variable.

The data are fixed. The data values are not to be optimized, so the data vector is sent in as a GLOBAL variable.

View solution in original post

3 REPLIES 3
Rick_SAS
SAS Super FREQ

In MLE problems, the data are not parameters in the optimization, they are fixed values. You can read them into a variable called X and then use the GLOBAL statement to enable the objective function to use those values in the MLE computation. See the article http://blogs.sas.com/content/iml/2011/10/12/maximum-likelihood-estimation-in-sasiml/

Hanyu
Fluorite | Level 6

Hi Dr. Wicklin,

I have read your blog. You use the following statement

mu = param[1];

to indicate that mu is a parameter.

I need to estimate many parameters. Do I need to define each of them as you define mu?

Rick_SAS
SAS Super FREQ

The parameters to be optimized are passed in as an argument to the objective function. These values represent the parameters in the model that are to be fit to the data. Most models have fewer than a dozen parameters.  You can copy these values to local variables, such as mu=param[1], but you can also use the param vector directly in the MLE equations, such as SUM(param) or SSQ(param) or MEAN(param).  So no, you do not have to copy them to a local variable.

The data are fixed. The data values are not to be optimized, so the data vector is sent in as a GLOBAL variable.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 3 replies
  • 977 views
  • 0 likes
  • 2 in conversation