I developed an extended node that simply merges N data sets in a final one, this one with a dynamic name, every time the node runs.
I want to connect this Extended Node to another node, a Meta Data node or a Input Data node, using the dynamic name.
How do I reference the data set created with a dynamic name in these next Nodes?
Am I right if i say it should be would a EM_ .... variable? Do I need a SAS Code Node in the middle?
Thank you very much!
I think all you want to do is call the data set &EM_EXPORT_TRAIN, then any subsequent nodes (connected to your extension node), will have that data set as the incoming training data set.
I think all you want to do is call the data set &EM_EXPORT_TRAIN, then any subsequent nodes (connected to your extension node), will have that data set as the incoming training data set.
Hello Wendy Czika.
I think that's it!
My final code block, now, it's like this:
----------------------------------------------------------------------------------------------------
DATA final_client_dataset;
MERGE client_dataset_1 client_dataset_2 client_dataset_3;
BY client_id;
RUN;
----------------------------------------------------------------------------------------------------
What you say is to put another code block, something like this and the incoming node (for example a Metadata Node) will automatically use it?
----------------------------------------------------------------------------------------------------
DATA &EM_EXPORT_TRAIN;
SET final_client_data_set;
RUN;
----------------------------------------------------------------------------------------------------
Thank you very much! I'll try it next Monday.
Thank you! It works!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.