Hi all,
I'm using SAS EM 6.2 and am trying to export my training data to SAS after performing a variable cluster node. I know in the later versions there is a Save Data node that would perform this function, is there a similar function for 6.2? Any help is greatly appreciated.
You can use a SAS code to write the results of the Cluster node to a directory as a SAS table with a data step, just like in SAS. Connect a SAS code node to the right side of the cluster node. In the SAS Code node use code like that below to save the SAS Code node's imported data to an external directory:
%let EXPORT_DIR_NAME= C:\temp; /* An existing directory that you have access to */
%let EXPORT_TABLE_NAME= exported_table; /* Whatever name you want */
libname export "&EXPORT_DIR_NAME";
data export.&EXPORT_TABLE_NAME.;
set &EM_IMPORT_DATA;
run;
You can use a SAS code to write the results of the Cluster node to a directory as a SAS table with a data step, just like in SAS. Connect a SAS code node to the right side of the cluster node. In the SAS Code node use code like that below to save the SAS Code node's imported data to an external directory:
%let EXPORT_DIR_NAME= C:\temp; /* An existing directory that you have access to */
%let EXPORT_TABLE_NAME= exported_table; /* Whatever name you want */
libname export "&EXPORT_DIR_NAME";
data export.&EXPORT_TABLE_NAME.;
set &EM_IMPORT_DATA;
run;
Thank you so much, that worked perfectly!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.