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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

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