Structure
The SAS language basically divides data processing and analysis into two kinds of steps.
- Data Steps - Which manipulate data input and creation or deletion of variables.
- Procedure Steps - Which manipulate analysis and output.The short form for each procedure step is Proc
Each line of code in SAS language ends with a ";"
Data Storage Hierarchy Data is stored in this hierarchy -
1) Libraries - Which contain datasets.
Libname Good "C:/Data/";
This creates a reference path to library named Good at storage location "C:/Data/";
2) Datasets -Which contain variables and observations. Observations are rows, and variables are column headers.
Datasets can be temporary (they close when you shut down the SAS Compiling software) or they can be stored to the Operating Disk File System.
data good.dataset1; (Output Dataset Name) set dataset2; (Input Dataset Name) run; (Command after each Data step)
This stores the temporary dataset named "Dataset2" into a permanent location "C:/Data/dataset1.sas7bdat ) because it uses the Reference to good as "C:/Data/"; in previous step.
Read more about this topic: SAS Language
Famous quotes containing the word structure:
“A structure becomes architectural, and not sculptural, when its elements no longer have their justification in nature.”
—Guillaume Apollinaire (18801918)
“Science is intimately integrated with the whole social structure and cultural tradition. They mutually support one otheronly in certain types of society can science flourish, and conversely without a continuous and healthy development and application of science such a society cannot function properly.”
—Talcott Parsons (19021979)
“Vashtar: So its finished. A structure to house one man and the greatest treasure of all time.
Senta: And a structure that will last for all time.
Vashtar: Only history will tell that.
Senta: Sire, will he not be remembered?
Vashtar: Yes, hell be remembered. The pyramidll keep his memory alive. In that he built better than he knew.”
—William Faulkner (18971962)