BookmarkSubscribeRSS Feed
upadhi
Quartz | Level 8
  • When a user executes a SAS E-Miner project in interactive mode where are the default log output of such an execution generated and placed. Also is just 1 single log file generated for the entire project execution or are multiple logs generated. In case the response to the query varies basis scenarios, can you please help provide some reference scenarios for further understanding.
  • When a user executes a SAS E-Miner Project in scheduled mode where are the default log output of such an execution generated and placed. Also is just 1 single log file generated for the entire project execution or are multiple logs generated. In case the response to the query varies basis scenarios, can you please help provide some reference scenarios for further understanding.

Can you please share some sample SAS E-Miner projects

1 REPLY 1
CurtisMackWSIPP
Lapis Lazuli | Level 10

You might want to look into taking control of the logs yourself using proc printto.

 

proc printto file="c:\temp\junk.log";
run;
data _null_;
  put "Hello";
run;
proc printto;
run;

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 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
  • 658 views
  • 0 likes
  • 2 in conversation