• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/3

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

3 Cards in this Set

  • Front
  • Back
Write out the general form for creating a data set from an existing data set.
Data SAS-data-set;
SET SAS-data-set;
<more SAS statements>
RUN;
Which statement creates a data set?
Which statement indicates the SAS data set to be read?
SAS-data-set in the DATA statement is the name (libref.filename) of the SAS data set to be created.
SAS-data-set in the SET statement is the name (libref.filename) of the SAS data set to be read.
For any data set you read in, you can use any of the programming features of the DATA step to manipulate your data.
Name some of the functions you can use.
Subset data = where , if statements
Drop variables
create or modify a variable
initialise and retain a variable Accumulate values
Specify a variable's length
Execute statements conditionally.