SAS Procedures
Wait there aren't any books here
Reading in Data
"Around the" Statements
Misc
100

This procedure lists the contents of a SAS dataset, including the number of observations and information about the variable attributes.

What is PROC CONTENTS?

100

The temporary library.

What is work?

100

This is the engine that is specified when reading an Excel file in through a LIBNAME statement. 

What is XLSX?

100

This is a global statement that establishes a permanent label at the top of the report for all reports created in your SAS session.

What is TITLE?

100

January 1st, 1960

What is the SAS date value of zero?

200

This procedure uses the keyword 'tables' instead of 'var' to specify the variables for analysis.

What is PROC FREQ?

200

This follows the LIBNAME keyword.

What is library reference or libref. 

"Name of the library you want to create"

200

This statement within a DATA step allows you to pull in an already existing SAS data file. 

What is SET?
200
This global statement allows for 10 lines to be written at the bottom of the procedure or DATA step output. 

What is FOOTNOTE?

200

This ODS statement turns off procedure titles.

What is ODS NOPROCTITLE?

300

Datasets must be altered through this procedure before merging or joining.

What is PROC SORT?

300

This is the number of characters that the name of a library is limited to. 

What is eight?

300

This option allows you to specify the file type within a PROC IMPORT.

What is DBMS?

300

This statement allows to create a macro variable to change repeating values quickly in one place.  

What is a %let?

300

This type of statement does not need a 'run;' at the end.

What is a global statement?

400

This procedure is an alternative to reading Excel files via the 'libname' statement.

What is PROC IMPORT?

400

These are restrictions to the characters used in library names.

What is must start with letter or underscore, can include only numbers, letters, or underscores?

400

This common DBMS identifier allows you to utilize the DELIMITER statement later in the code. 

What is DLM?

400

This statement provides SAS with specific instructions for how to read other types of structured data. 

What is LIBNAME?

400

Encountering one of these four statements signifies the end of a SAS program step.

What are the DATA, PROC, QUIT, and RUN statements?

500

This procedure includes options such as mean, min, mode, n, and range to name a few.

What is PROC MEANS? 

500

This is the default engine SAS uses if one is not specified in the LIBNAME statement. 

What is base? 

500

This option is where you provide the data path for the PROC IMPORT.

What is DATAFILE?

500
This global statement forces table and column names to follow SAS naming conventions
What is 

OPTIONS VALIDVARNAME=V7;

500

These are the three main rules for naming SAS tables and variables.

Up to 32 characters; first character must be letter or underscore; no blanks or special characters (except for underscore).