home | schedules | software | help | who we are | about | workshops | links | data access | contact us | print version

<  November 2009 >
Su Mo Tu We Th Fr Sa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

Reserve a classroom


Schedule for
11/23/2009


Main Lab
140 Prospect St.
Room 101
8:30am- 5pm No Classes

Rosenkranz Hall
115 Prospect St.
Room 01
8:30am- 5pm No Classes

Consultant's Desk
140 Prospect St.
Room 100
10am- 1:30pm Jennifer Green
1:30- 5pm Taylor Arnold


schedules

software

help

who we are

data access

about

workshops

links

SAS for Windows

Running SAS for Windows

Menus

Three types of menus are available in SAS for Windows, with overlapping task functions.

Useful Function Keys

<F9>       keys , displays action of function keys
<F8>       submit, applicable only to Program Editor window
<F4>       recall text,  applicable only to Program Editor window
<CTRL> E   clear, clears text in current window
<F7>        output,  to view contents of Output window
<F5>        program, to view contents of Program Editor window
<F6>        log, to view contents of Log window

Printing Text

Graphs

Using any procedure in the SAS/GRAPH module will invoke a separate graph window

Reading in SAS Transport Files

To read and run a procedure using a TRANSPORT file (.exp file) created by SAS, enter the following in the Program Editor window in SAS for Windows:


    libname in xport 'a:\diss.exp';
    proc (whatever) data=in.diss;
    run;
 

Where 'a:\diss.exp' is the Transport file name.

To make transformations and a new copy of the TRANSPORT file in PC SAS format:


    libname in xport 'a:\diss.exp';
    libname out 'c:\temp';
    data out.diss; set in.diss;
    (data transformations, etc go here);
    run;

These examples assume that the TRANSPORT file (diss.exp) resides on diskette in the 'a:' drive. If it resides elsewhere, you would have to make the appropriate path change. The second job would write the new dataset out to the 'c:\temp' drive. The file will have the name 'diss.sd2'.

Reading in Data Generated by Different Software

The software package DBMSCOPY available on all STATLAB machines can easily convert many types of non-SAS datafiles. Below are directions and links to access commonly used non-SAS datafiles.