I am trying to access my file in the work folder and I could not get it!!
here is my code:
DATA TEMP;
SET cs554.case0702;
LOG_PH=LOG(pH);
LOG_TIME=LOG(Time);
RUN;
PROC DATA = work.temp SIMPLE
PLOTS(ONLY LABEL)=(PREDICTION(X=LOG_TIME) QQPLOT BOXPLOT);
MODEL PH=LOG_TIME / CLB;
LABEL LOG_TIME="LOG(TIME(HOURS))" pH="pH LEVEL";
RUN;
What does the log show? My guess is you forget to assign the CS554 library.
@ebrolove wrote:
I am trying to access my file in the work folder and I could not get it!!
here is my code:
DATA TEMP;
SET cs554.case0702;
LOG_PH=LOG(pH);
LOG_TIME=LOG(Time);
RUN;
PROC DATA = work.temp SIMPLE
PLOTS(ONLY LABEL)=(PREDICTION(X=LOG_TIME) QQPLOT BOXPLOT);
MODEL PH=LOG_TIME / CLB;
LABEL LOG_TIME="LOG(TIME(HOURS))" pH="pH LEVEL";
RUN;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.