/* This program demonstrates several ways to read raw data in to Stata, creating Stata datasets. To use these programs you need to: 1. Create a directory on your hard drive called "Reading_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\reading_data". */ cd "*****YOUR DRIVE AND PATH NAME HERE*****\reading_data\" /* Homework #1: Reading Data */ do "Stata-Read_Data-INPUT.do" /* Using input */ do "Stata-Read_Data-INSHEET.do" /* Using insheet */ do "Stata-Read_Data-INFILE1.do" /* Using infile */ do "Stata-Read_Data-INFILE2.do" /* Using infile */ do "stata-read_data-spreadsheet.do" /* import excel */ do "stata-read_data-STATE_DATA.do" /* Read the state data */ /* Additional Stata code not covered in the assignment */ do "Stata-Read_Data-GRAPH.do" /* Show two graphs */ do "Stata-Read_Data-INFIX.do" /* Using infix */