* Diagnostics Example -- SAS source code; options linesize=70 nodate helpbrowser=sas; data cpu; infile "c:/datasets/cpu.txt" firstobs=10; input CpuTime CardsIn LinesOut Steps MountedDevices; ods pdf file = 'c:/datasets/diagnostics-sas.pdf'; ods graphics on; proc reg; model CpuTime = LinesOut Steps MountedDevices; run; ods graphics off; ods pdf close; quit;