Skip to content

Latest commit

 

History

History
54 lines (30 loc) · 1.18 KB

03-structure.md

File metadata and controls

54 lines (30 loc) · 1.18 KB

Structure of the project

Folder by function

Let's start with something easy. Separate folders for each function: code/ and data/

code/
data/

TIER Protocol

  • The TIER Protocol is a set of guidelines for organizing reproducible research.

TIER Protocol

Scripts by function

We will download -> Create a script download_data.do

Paths in scripts

🛑Do not hard-code paths!

copy "$URL" "C:\Users\lv39\Desktop\day1\data\dist_cepii.dta", replace

Why?

Names in scripts

🛑Do not rename data files!

copy "$URL" "C:\Users\lv39\Desktop\day1\data\that_file_from_cepii.dta", replace

Why?

Redo the same thing for other data

Link

Step 3: Stata 1

Footnotes

  1. 🔒Tag: stage3