Lesson 1: Essentials Flashcards

1
Q

The EDITOR window is used

A

To write code

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

LOG window

A

is used for viewing descriptive information about what SAS does with your code.

any errors made or any Warnings that might appear during the writing of your SAS code.

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

The EXPLORER window

A

is the area where you will be navigating to various Libraries and data.

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

DATASET

A

All data in SAS is stored in what is called a Dataset.

It is nothing different from a spreadsheet with two dimensions to it.

A dataset can also be called as a TABLE, but in SAS it is called simply a dataset

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

VARIABLES

A

= Columns

They are called Variables because the values under them may change depending on the dataset you’re dealing with.

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

OBSERVATIONS

A

= Rows

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

What are the ONLY 2 types of data in SAS?

A

Character and Numeric

Character are LEFT aligned (within the cell)
Numeric are RIGHT aligned

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

How are MISSING values represented?

A

Character - NULL (empty)
Numeric - PERIOD / DOT (.)

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

All data has to reside (where)?

A

In some kind of LIBRARY

A dataset cannot reside on its own in a SAS session

There is really NO limitation to the amount of data or the number of datasets that can be stored in a Library

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

What are the 2 MAIN types of Libraries?

A

Temporary and Permanent

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

What is a TEMPORARY library?

A

A Temporary Library is a place somewhere on your computer’s memory where SAS stores the data only temporarily.

The data stored in this place is lost, once you close your SAS session, and it won’t be available the next time you restart your session. It is usually a place to put in your working dataset that you might not need the next time you log into your SAS session.

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

What is a WORK library?

A

By default, SAS creates a Temporary Library called the WORK folder every time you start your SAS session. So every time you start your session, the Work Library is an empty place to begin with, and it is erased every time you log off SAS session.

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

What is a PERMANENT library?

A

A PERMANENT Library is a place on your computer to which SAS permanently associates a reference that is not lost even after you close your SAS session. It is retrievable anytime you come back to your SAS session.

The Permanent Library reference from your session could be either on your local desktop computer or somewhere on a server.

By default, SAS provides some sample Permanent Libraries
SASHELP
SASUSER
WEBWORK

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