/* This program demonstrates how to create a number of different Stata graphics. To use these programs you need to: 1. Create a directory on your hard drive called "Graphing" 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\Graphing\". */ * cd "*****YOUR DRIVE AND PATH NAME HERE*****\Examining_Data\" /* Homework #3: Graphing Data */ use "socy699c-data.dta", clear do "socy699c-hw3-hist.do" /* Examine Histograms */ do "socy699c-hw3-box.do" /* Examine Box Plots */ do "socy699c-hw3-bar.do" /* Examine Bar Charts */ do "socy699c-hw3-faithful.do" /* Examine Scatterplots */ do "socy699c-hw3-gss-scatter.do" /* Examine Scatterplots */ do "socy699c-hw3-gss-scat-soc.do" /* Examine Scatterplots */ do "socy699c-graphics-examples.do" /* Lots of detailed examples */