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

Hi All,

 

I would like to delete a channel with a Sas Code node. The sas code node is receiving data on Train & Test channels. I would like to export only on the Train. 

 

I tried to create and delete the data on the test channel, but EM adds it back.

data &em_export_test;
	delete;
run;

proc sql;
	drop table &em_export_test;
quit;

 

Note: I have seen that Data partition node can delete the test channel if i set the data set allocation on test is set to 0.

 

Thank you for your help,
Laszlo

1 ACCEPTED SOLUTION

Accepted Solutions
lmagyar
Fluorite | Level 6

In the meantime i found the solution:

 

To remove a channel data from the exported channels, you have to enter simply:

%let EM_TEST_SCORE=N;

 

The same applies for the other channels like: %let EM_TRAIN_SCORE=N;

View solution in original post

1 REPLY 1
lmagyar
Fluorite | Level 6

In the meantime i found the solution:

 

To remove a channel data from the exported channels, you have to enter simply:

%let EM_TEST_SCORE=N;

 

The same applies for the other channels like: %let EM_TRAIN_SCORE=N;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to choose a machine learning algorithm

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.

Discussion stats
  • 1 reply
  • 872 views
  • 0 likes
  • 1 in conversation