/* This program demonstrates how you can learn about the contents of Stata datasets. To use these programs you need to: 1. Create a directory on your hard drive called "Examining_Data" 2. Replace the text *****YOUR DRIVE AND PATH NAME HERE***** in the Stata command below with the complete location of this directory. You need the drive and directory. For example, on my home computer I use "c:\data\Examining_Data\". */ * cd "*****YOUR DRIVE AND PATH NAME HERE*****" cd "c:\data\Examining_Data\" /* Homework #2: Examining and Changing Data */ /* Create the data set */ do "socy699c-hw2-create.do" /* Create the dataset */ do "socy699c-hw2-examine.do" /* Look the data over */ do "socy699c-hw2-change.do" /* Make changes */ do "socy699c-hw2-sociability.do" /* Make sociability measure */