Entry SAS Flashcards

1
Q

Code to set a LIBREF

A

LIBNAME [name] [file location];

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Code to create a new dataset

A

DATA [new-dataset];
SET [old-dataset];
RUN;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Code to run basic univariate analysis

A

PROC UNIVARIATE DATA = [dataset];
PLOTS normal;
VAR [variable];
HISTOGRAM;
QQPLOT;
RUN;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Code to run basic t-test

A

PROC TTEST DATA = [dataset];
VAR [test variable];
CLASS [grouping variable];
RUN;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly