Skip to content

Commit

Permalink
EXP2
Browse files Browse the repository at this point in the history
  • Loading branch information
h1tenbafna committed Nov 23, 2022
1 parent a0ec0ab commit 87232db
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Binary file added EXP2/exp-2.pdf
Binary file not shown.
19 changes: 19 additions & 0 deletions EXP2/exp3.sas
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
PROC SQL;
CREATE TABLE WORK.query AS
SELECT Latitude , Longitude , 'Depth'n , Magnitude , dNearestStation , RootMeanSquareTime , 'Type'n FROM SASHELP.QUAKES;
RUN;
QUIT;

PROC DATASETS NOLIST NODETAILS;
CONTENTS DATA=WORK.query OUT=WORK.details;
RUN;

PROC ANOVA DATA = WORK.query;
CLASS type;
MODEL Magnitude = type;
MEANS type / tukey lines;
RUN;


PROC PRINT DATA=WORK.details;
RUN;

0 comments on commit 87232db

Please sign in to comment.