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;
... View more