/* You may use this type of comment for your name */ * Or this style, your choice; **********************************************; *** You may want to make a fancy box with ***; *** your name and the assignment number ***; *** Anything that starts with an asterisk ***; *** and ends with a semicolon is a comment ***; **********************************************; dm'log;clear;output;clear'; options nodate nocenter nonumber ps=556 ls=132; ODS HTML style=minimal rs=none body='C:\TEMP\Assignment01.html' ; Title1 'Assignment 1'; filename Assign1 'C:\TEMP\EX0428.csv'; data One; infile input1 missover DSD dlm="," firstobs=1; input Xvalue Yvalue; datalines; your data goes here if included in the program, with a ; on the line following the dataset Title2 'Data list'; proc print data=one; run; options ps=56 ls=80; Title2 'Scatter plot'; proc plot data=one; plot Yvalue * Xvalue; run; options nodate nocenter nonumber ps=256 ls=100; Title2 'Univariate'; proc univariate data=one plot normal; var yvalue; run; Title2 'Regression'; proc reg data=one; model yvalue = xvalue; run; ODS HTML close;