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;

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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
  • 470 views
  • 0 likes
  • 2 in conversation