Skip to content

Instantly share code, notes, and snippets.

@mcorey
mcorey / Corey Diss Papers 1&2
Created May 1, 2013 17:06
Script to produce my first two dissertation papers, in STATA.
/* .Do file to run the ATUS to look at Parental Time Use by income */
#delimit;
clear;
clear matrix;
version 11;
set mem 400m;
set mat 1600;
set more off;
cd "/Users/michaelcorey/Dropbox/School Work/Diss Paper 1 -- weekend work over time/";
@mcorey
mcorey / Corey Diss Paper 3
Last active December 16, 2015 20:59
This is the script that produces the results for my final dissertation chapter.
#Build 03-11 Respondent Data [12-Feb-2013 Cut to 2000 RND cases]
rm(list=ls()) #Clear Workspace
#Load Libraries
library(utils)
library(foreign)
library(car)
library(TraMineR)
library(plyr)