Is there a way to score new observations based on initial scoring using PROC HPCLUS? I have seen posts on using FASTCLUS, but also interested in using HPCLUS.
Thank you,
Ben
PROC HPCLUS has a CODE statement to save the DATA step score code, so you can use that, then score your new data with it:
proc hpclus...;
/* other statements */
code file="hpclus.sas";
run;
data scored_data;
set data_to_score;
%inc "hpclus.sas";
run;
PROC HPCLUS has a CODE statement to save the DATA step score code, so you can use that, then score your new data with it:
proc hpclus...;
/* other statements */
code file="hpclus.sas";
run;
data scored_data;
set data_to_score;
%inc "hpclus.sas";
run;
Thank you for this excellent tip.
What are your suggestions to determine if a new observation's cluster scoring indicates that an additional cluster is now present compared to the training dataset?
My dataset for training basically contains different platters / surfaces with defects at known locations (x and y).
How can I setup HPCLUS to use the distinct defects on multiple platters for traning?
Thank you,
Ben DeKoven
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.
Find more tutorials on the SAS Users YouTube channel.