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

Hi,

 

I am new to SAS and tried to set up a bin packing program based on the example from the user's guide (link).

 

The program runs without errors, however, the optimal solution is not printed/displayed.

 

I think that this piece of code is sorting the results:

 

proc sort data=dvd;

by bin;

run;

 

I don't know if a print statement is necessary, it is not stated in the example.

 

Thank you in advance!

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Yes, you can print the results from the created data by adding the step

 

proc print data=dvd noobs;
   by bin;
   sum size;
run;

after the PROC SORT Step.

View solution in original post

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

The PROC SORT step merely sorts the created data. You can use a PRINT Statement in PROC OPTMODEL to print the optimal solution like this

 

print bin size;

However, this is the exact same data as stored in the data set "Dvr", which contains the solution generated.

Hendrik
Calcite | Level 5

 

Thank you, this works, but is possible to print it in the format of the example as well (see below)?

 

Capture.JPG

 

 

 

 

PeterClemmensen
Tourmaline | Level 20

Yes, you can print the results from the created data by adding the step

 

proc print data=dvd noobs;
   by bin;
   sum size;
run;

after the PROC SORT Step.

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 Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1476 views
  • 0 likes
  • 2 in conversation