Hey! (working on SAS Studio)
I am trying to create a set in the proc optmodel body of my program, but so far I haven't been successful.
For small sets is ok to create the sets for variables, parameters in the declaration statement but right now I am working with a problem instance that has 200+ elements in one set and 1300+ in another one, so I wonder if there is a way to create a set from a previous data set I can create beforehand.
Something like this.
Data H; input ids; datalines; 131 199 229 512 ; Run; proc optmodel; set Hubs; Read data H into Hubs=ids;
You almost had it. You just need square brackets around the key column(s):
Read data H into Hubs=[ids];
You might find this book of examples useful for learning about PROC OPTMODEL.
You almost had it. You just need square brackets around the key column(s):
Read data H into Hubs=[ids];
You might find this book of examples useful for learning about PROC OPTMODEL.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.