π 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#
π 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
π¦ Datasets#
π Supplemental Materials#
π A note on Stata 13
π 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#
A concrete example of prompt-meets-code.
π§Ύ 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 aboveAnd 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"
}