/**************************************************************** * Author: Alan Neustadtl Date: 08feb2008 * * * * This set of Stata files runs through the review material in * * chapter three of the Kleinbaum text book. You will need * * download the GSS data and change the directory in the * * line that begins "capture cd". Why do I have two lines? * * To reflect the different locations of the files on my * * home computer and office computer. Normally, issuing a * * "cd" command to a non-existing directory will stop your * * program--the "capture" command keeps it going (see help * * capture). * ****************************************************************/ capture cd "C:\Documents and Settings\aneustadtl\My Documents\My Classes\SOCY602\Stata usersite\ch3" capture cd "c:\documents and settings\aneustadtl\my documents\my classes\socy602\kleinbaum\ch3\" clear set mem 60m use gss-98-06, clear /* Create Sociability Measure */ do "SOCY602-GSS-Sociability-Scale.do" /* Look at descriptive statistics */ do "SOCY602-GSS-Sociability-Descriptives.do" /* Look at the data graphically */ do "SOCY602-GSS-Sociability-Graphics.do" /* Show percentile problem on p. 20 */ do "SOCY602-GSS-Sociability-Percentile-Example.do" /* Confidence intervals and t-tests (p. 24) */ do "SOCY602-GSS-Sociability-ttest-Example.do" /* Solution to selected problems (p. 32) do "SOCY602-Kleinbaum-Problems-CH3.do"