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:
“Who says that fictions only and false hair
Become a verse? Is there in truth no beauty?
Is all good structure in a winding stair?
May no lines pass, except they do their duty
Not to a true, but painted chair?”
—George Herbert (15931633)
“There is no such thing as a language, not if a language is anything like what many philosophers and linguists have supposed. There is therefore no such thing to be learned, mastered, or born with. We must give up the idea of a clearly defined shared structure which language-users acquire and then apply to cases.”
—Donald Davidson (b. 1917)
“Women over fifty already form one of the largest groups in the population structure of the western world. As long as they like themselves, they will not be an oppressed minority. In order to like themselves they must reject trivialization by others of who and what they are. A grown woman should not have to masquerade as a girl in order to remain in the land of the living.”
—Germaine Greer (b. 1939)