How to remove date and page number from the PDF destination? I do use : options nonumber nodate; This works for the HTML destination but not for the PDF. In the top upper corner there is the date and page number in the format: Thursday, January 9, 2025 02:19:16 PM 1 Below is the code: ODS PDF FILE="&reports_new.ARIMA_output_MFED_model_stats_yearly.pdf" STARTPAGE=NO;
ods select StationarityTests ParameterEstimates FitStatistics ;
proc arima data=data_out.SP_sum1
plots=(residual(smooth) forecast(forecasts))
;
WHERE date_sas >="01JAN1970"d AND MONTH(date_sas)=&Last_month.;
identify var=Log_of_Valuation_factor stationarity=(adf) ;
estimate p=1 q=0 method=ml outest=est_sum /*noint*/;
outlier id=date_sas maxnum=5;
forecast lead=15 interval=year id=date_sas BACK=0
out=r_Log_of_Valuation_factor(RENAME=(FORECAST=F_sum STD=STD_sum
L95=LCI_sum U95=UCI_sum RESIDUAL=R_sum))
;
run;
ODS PDF CLOSE; There is nothing in the log that indicates that the " options nonumber nodate;" were ignored. There is also no errors or warnings.
... View more