Stata:® Version 7

Contents

Description
Where to find Stata
Stata: Instructions
Common Problems
Other resources
If you still need help

Description

Stata is a statistical software system including --

The current release of Stata is Stata 7. Consistent with Stata policy, version 7 is compatible with earlier releases of Stata, meaning that syntax you might have used with Stata 6 or earlier should work with Stata 7 just as it did with earlier releases. But, to assure compatability, be sure to put version 6.0 at the top of your old syntax files.

There are several new features in Stata 7. These include --

For more information, start xstata and click "Help/What's New/whatsnew6to7."

Top

Where to find Stata

Stata for UNIX may be used on the central UNIX servers, strauss and mahler. This document describes use of Stata on UNIX.

Stata for Windows is installed in the Research Data Management Services (RDMS) Data Center located in the basement of Smith Hall, Room 002C.

Top

Stata: Instructions

Stata on UNIX requires you to set up the PATH environment variable so the system can find Stata. And until Stata 7 becomes the production version, there are two aliases that must be set.

The next three sections describe the UNIX set up and the interactive and batch modes for running Stata.

Set Up. Stata 7 currently is running in test mode. To set up your account to run Stata 7, make the following modifications to your UNIX "dot" files --

Use a unix editor such as pico, vi, or emacs to make these changes, then logout and login again.

If you do not already have a file named .localenv, or you don't have a file called .localalias, both in your home directory, then issue the commands --

before you make these changes to your dot files.

Note: The ~consult/proto/setup command backs up your existing .cshrc, .login, .localenv, and .localalias, if they exist. Look at the messages from the setup to see where they are backed up. If you have customized any of these files, copy your custom commands from the backups into the new files.

On UNIX, Stata may be run (1) in a full-screen environment, (2) in line-prompt mode, or (3) batch mode.

Running Stata: Full-screen Mode. To run Stata interactively in full-screen mode, you must be logged onto your unix account using an X interface such as an X-terminal, a UNIX Workstation, or an emulation of an X-terminal such as Exceed running on Windows or MacX running on a Mac. After loggin on, type --

xstata

at the UNIX prompt. Three panes appear in a new window. Figure 1 shows an image of the Stata 7 window.

You may customize the appearance of the window by clicking Prefs. For example, to change the color scheme from green on black in the "Stata Results" pane, click Prefs/General Preferences/Results.

The editor is the bottom right pane. Type Stata commands here. Figure 2 shows a simple example. The upper left pane displays the Stata commands and data that were entered, one line at a time, in the lower right pane. The lower left pane lists the names of the variables, and the Stata Results window, upper right, displays the output.

To show a high-resolution histogram, type, for example --

     graph MPG, hi xlabel ylabel

The result looks like --

 

You may print the plot by issuing the print command -

print @Graph

or by clicking the right mouse button on the plot and releasing.

By default, the background of the plot is black. You may change the color scheme by clicking Prefs/Graphics Preferences.

You must be in a Stata full-screen session. Otherwise, you get no plot and no message from Stata indicating the nature of the problem. The graphics no longer work from a prompted session.

Running Stata: Line Mode. To run a prompted Stata session but without the full-screen window, type --

stata7

at the UNIX prompt. The Stata prompt is a period located at the beginning of the command line. To exit Stata, type --

. exit

at the Stata prompt. If you have unsaved work in memory, Stata will refuse to exit. You can save your worksheet, then exit --

replacing filename with the name of your file. Stata adds an extension of .dta to your filename.

Or you can force Stata to exit without saving your data by typing --

. exit, clear

at the Stata prompt.

You may enter data at the Stata prompt by typing the keyword "input" followed by a list of variable names. For example --

. input price mpg weight 

    price mpg weight 
  1. 4697  25 1930
  2. 8814  21 4060
  3. 3667   . 2750
  4. 4099  22 2930
  5. end

.   
To list the data, type list at the Stata prompt --

. list

         price        mpg     weight 
  1.      4697         25       1930  
  2.      8814         21       4060  
  3.      3667          .       2750  
  4.      4099         22       2930  

. 

These are the same commands used to illustrate the full-screen Stata.

Variable names must --

Notes: (1) Variable names are case sensitive. (2) A period denotes a missing numeric value.

To add more observations, just type input with no variable list, for example --

. input

    price mpg  weight 
  5. 5079  24  2280 
  6. 5189  20  3280
  7. 8129  21  2750 
  8. end

.

List the cases again to confirm --

. list

         price        mpg     weight 
  1.      4697         25       1930  
  2.      8814         21       4060  
  3.      3667          .       2750  
  4.      4099         22       2930  
  5.      5079         24       2280  
  6.      5189         20       3280  
  7.      8129         21       2750  

.

To get univariate descriptive statistics type --

. summarize

Variable |     Obs        Mean   Std. Dev.       Min        Max
---------+-----------------------------------------------------
   price |       7    5667.714   1997.448       3667       8814  
     mpg |       6    22.16667    1.94079         20         25  
  weight |       7    2854.286   688.7878       1930       4060  

.

To record your session in a file, type --

. log using filename
substituting the name of your file for filename. The log file will be named filename.log. To stop recording commands and output in the log, type --

. log close
Running Stata: Batch Mode. You can run a Stata job with your commands in a command file instead of typing them interactively at the Stata prompt. Stata expects a filename extension of ".do" for its command files. For example, suppose a command file named mpgtest.do contains the following commands --

     use mpgtest
     describe
To run Stata using this command file, type --
     stata -b do mpgtest
The -b flag indicates a batch run. The "do" keyword indicates to Stata to execute the commands in the file named after the do keyword, in this example, mpgtest.do. Stata assumes an extension of .do if you omit it. Output for this example is saved in a file called mpgtest.log. If your output is not written or not updated, check a file named stata.log for diagnostics.

You can accomplish the same result by using the UNIX redirection symbols, like this --

     stata < mpgtest.do >! mpgtest.log
The advantage of using the UNIX redirection symbols is that you have complete control over the names of your command files and output files.

To run the job in the background, use the UNIX "&" character at the end of the command. For example --

     stata < mpgtest.do >! mpgtest.log &
Top

Common Problems

In most UNIX applications, pressing ^Z (control key and z key simultaneously), the application is suspended, you are returned to the UNIX prompt and can issue UNIX commands. To return to the application, press the % key.

If your UNIX shell is the C shell (/usr/bin/csh), the ^Z sequence does not work correctly with Stata. Execution of Stata is suspended and you are returned to the UNIX prompt. But your UNIX commands are not written to the screen; however, their output does appear on your screen.

Top

Other Resources

There are several sources of additional information about Stata --

One copy of each Stata manual is kept in the Research Data Management Services (RDMS) Data Center, 002C Smith Hall.

Top

If You Still Need Help

If you need help quickly, you may call the IT Help Center. at 831-6000 between 8:00 a.m and 5:00 p.m. Monday through Friday. Or you can submit a question through E-mail .

Top


Last modified: June 21, 2001.
This page maintained by Larry Hotchkiss.
Copyright © University of Delaware, 2001.