πŸ“Œ Quick References#

πŸ›οΈ Room#

  • Wolfe W3031, East Baltimore Campus

  • All are welcome to join the in-person vibe – come for the content, stay for the camaraderie


πŸ”— Zoom#

  • Every session and lab is recorded

  • Videos stay up for 120 days

  • Share your screen freely during lab – that’s where the magic happens


πŸŽ₯ Recordings#

Day

Link

M

Watch

T

Watch

W

Watch

Th

(TBA)

F

Watch


πŸ“ Syllabus#

πŸ“š CoursePlus#

  • Video passcodes

  • Discussion forum

  • Lab Dropbox


πŸ‘¨πŸ½β€πŸ« Your Instructor#

Abimereki Muzaale πŸ“§ muzaale@jhmi.edu

πŸ‘¨πŸ»β€πŸ’» Co-Instructor#

Vincent Jin πŸ“§ zjin26@alumni.jh.edu


πŸ§ͺ Labs#

Labs due at 11:59 PM in Dropbox

Lab

Link

M

Lab 1

T

Lab 2

W

Lab 3

Th

Lab 4 (practice at your pace)

F

Lab 5


πŸ“¦ Datasets#

File

Formats

transplants

.dta / .txt

donors

.dta / .txt

donors_recipients

.dta / .txt

tx_yr

.dta / .txt


πŸ“‚ Supplemental Materials#


πŸ“– Catalog#

Want a boost? Check the Stata code catalog – not exhaustive, but damn useful.

🧠 In-a-Nutshell#

See what we cover in this whirlwind course.

πŸ€– Prompt-Based Programming#


🧾 Course Evaluation#

Yes, we read them. Yes, they shape the course.


πŸ“£ Announcements#

See also

Last updated: 7:00 AM on 06/23/25

  • Please study supplemental .do files above

  • And be sure to utilize just-click.do


πŸ–₯️ OS-Agnostic Code Snippet#

Write once. Run anywhere.

if "`c(os)'" == "Windows" {
    local downloads `"c:\Users\`c(username)'\Downloads"'
}
else {
    local downloads "~/Downloads"
}