Joung Yeob Ha (@joungyeobha) 's Twitter Profile
Joung Yeob Ha

@joungyeobha

Economic Historian | AP at Hanyang Univ. | PhD @PittEcon

ID: 1874518165

linkhttps://sites.google.com/site/joungyeobha calendar_today17-09-2013 07:11:54

53 Tweet

83 Followers

194 Following

Todd Jones 🦊 (@toddrjones) 's Twitter Profile Photo

Quick Stata tip (ICYMI): keep if inlist(state, "AL", "AK", "AZ") is the same as: keep if state=="AL" | state=="AK" | state=="AZ" And: keep if inrange(distance, 10, 91) is the same as: keep if distance>=10 & distance<=91

Susan Athey (@susan_athey) 's Twitter Profile Photo

Synthetic difference-in-differences, in Stata! Check out our article describing the package. Makes nice graphs illustrating time trends and unit weights. Comments welcome! arxiv.org/pdf/2301.11859…

Synthetic difference-in-differences, in Stata!  Check out our article describing the package.  Makes nice graphs illustrating time trends and unit weights. Comments welcome! arxiv.org/pdf/2301.11859…
Asjad Naqvi (@asjadnaqvi) 's Twitter Profile Photo

A pro #StataTip for #reshape that I just rediscovered while fixing some code on the train: One can use the @ in reshape commands to indicate where the j-index is. This is especially useful if: (a) variable names r not consistent (fig 👇) (b) variable names have mutiple numbers

A pro #StataTip for #reshape that I just rediscovered while fixing some code on the train:

One can use the @ in reshape commands to indicate where the j-index is. This is especially useful if:
(a) variable names r not consistent (fig 👇)
(b) variable names have mutiple numbers
Todd Jones 🦊 (@toddrjones) 's Twitter Profile Photo

Quick Stata tip: to replace w/ "egen" commands, use "ereplace": *old way: sysuse auto2, clear *error: bys r: replace mpg = max(mpg) *instead: bys r: egen mpg2 = max(mpg) drop mpg rename mpg2 mpg *new way: ssc install ereplace sysuse auto2, clear bys r: ereplace mpg = max(mpg)

Paul Poast (@profpaulpoast) 's Twitter Profile Photo

"War is persistent, but not prevalent." THIS (not "democratic peace") is the closest thing to an "empirical law" in international relations. How do we know it? [THREAD]

"War is persistent, but not prevalent."

THIS (not "democratic peace") is the closest thing to an "empirical law" in international relations.

How do we know it?

[THREAD]
Todd Jones 🦊 (@toddrjones) 's Twitter Profile Photo

Quick Stata tip: use "geonear" to find the nearest point in B to each point in A: ssc inst geonear clear set ob 20 set se 1 g n2=_n g la2=39+5*rt(5) g lo2=-99+9*rt(5) tempfile a save `a' ren n2 n g la=la2+3*rt(3) g lo=lo2+4*rt(4) drop *2 geonear n la lo using `a', n(n2 la2 lo2)

Quick <a href="/Stata/">Stata</a> tip: use "geonear" to find the nearest point in B to each point in A:

ssc inst geonear
clear
set ob 20
set se 1
g n2=_n
g la2=39+5*rt(5)
g lo2=-99+9*rt(5)
tempfile a
save `a'
ren n2 n
g la=la2+3*rt(3)
g lo=lo2+4*rt(4)
drop *2
geonear n la lo using `a', n(n2 la2 lo2)
Crémieux (@cremieuxrecueil) 's Twitter Profile Photo

One of my favorite papers in recent years included this diagram. It shows the impact of controlling for three different types of variables: confounders, colliders, and mediators. With confounders, control is good. With the others, you ruin your result by controlling.

One of my favorite papers in recent years included this diagram. It shows the impact of controlling for three different types of variables: confounders, colliders, and mediators.

With confounders, control is good. With the others, you ruin your result by controlling.
Madeline (@madsmacartney) 's Twitter Profile Photo

My camera roll is now more screenshots than photos. Mainly things I want to eventually buy, places to go, stuff to remember etc. Feels like there could be a better way to traverse and map the internet?

Giuseppe Cavaliere (@cavalieregiu) 's Twitter Profile Photo

Hi #EconTwitter! Looking for tips and resources on teaching & writing in #economics? Check out the 2023-24 edition of "Writing Tips for Economics Research Papers" by P. Nikolov 🇺🇸🌐, and his updated list of links to research & teaching materials. Very cool and useful stuff!

Hi #EconTwitter!  

Looking for tips and resources on teaching &amp; writing in #economics?  

Check out the 2023-24 edition of "Writing Tips for Economics Research Papers" by <a href="/pnikolov/">P. Nikolov 🇺🇸🌐</a>, and his updated list of links to research &amp; teaching materials. 

Very cool and useful stuff!
Fahad Mirza (فہد مرزا) (@thefstat) 's Twitter Profile Photo

Automated way of picking last 5 words in a string sentence using #Stata. Handy if desired text is difficult to extract using strpos(), substr(), etc. Code: github.com/fahad-mirza/pi… Can be modified to pick text from any part of sentence #data #DataAnalytics #string #datascience

Automated way of picking last 5 words in a string sentence using #Stata. Handy if desired text is difficult to extract using strpos(), substr(), etc.

Code: github.com/fahad-mirza/pi…

Can be modified to pick text from any part of sentence

#data #DataAnalytics  #string #datascience
Melissa Dell (@melissaldell) 's Twitter Profile Photo

I’m excited to share American Stories, a new billion-scale dataset of structured texts/layouts from public domain newspapers (1780-1960) that we’ve built using our deep learning packages. #EconTwitter (1/13) Paper: arxiv.org/abs/2308.12477 Dataset: huggingface.co/datasets/dell-…

Leo Ahrens (@leo__ahrens) 's Twitter Profile Photo

I wrote a Stata command that plots distributions of variables after absorbing variance from fixed effects (or controls variables). Here are examples. Read this thread for an introduction & motivation. github.com/leojahrens/fed…

I wrote a Stata command that plots distributions of variables after absorbing variance from fixed effects (or controls variables). Here are examples.
 
Read this thread for an introduction &amp; motivation.
 
github.com/leojahrens/fed…
Joung Yeob Ha (@joungyeobha) 's Twitter Profile Photo

Back after 6(!) years. Thanks for the warm hospitality and insightful suggestions! Delighted to reconnect with familiar faces and meet new ones. Always a great department, now even more so with fantastic new hires!

Todd Jones 🦊 (@toddrjones) 's Twitter Profile Photo

Quick Stata tip: I've written a book that compiles 97 of my Stata tips. You can download "Quick Stata Tips" and the companion .do file for free at toddrjones.com/quickstatatips/

Yujung Hwang / 황유정 (@yujunghwang3) 's Twitter Profile Photo

The heavily revised paper has now been submitted to a journal for review! 🤩🤩 This paper studies ethnic minorities' residential sorting and their cultural assimilation and discusses the effective integration policy papers.ssrn.com/sol3/papers.cf…

The heavily revised paper has now been submitted to a journal for review! 🤩🤩
This paper studies ethnic minorities' residential sorting and their cultural assimilation and discusses the effective integration policy
papers.ssrn.com/sol3/papers.cf…
Jan Vogler (@jan_vogler) 's Twitter Profile Photo

🚨 Are you interested in Historical Political Economy (HPE)? 🚨 At the Virtual Workshop in HPE (VWHPE) we discuss state-of-the-art research in the field on a regular basis. ‼️ We have just issued a new call for papers. ‼️ Please see the link in tweet #2 if you’d like to join.

🚨 Are you interested in Historical Political Economy (HPE)? 🚨

At the Virtual Workshop in HPE (VWHPE) we discuss state-of-the-art research in the field on a regular basis.

‼️ We have just issued a new call for papers. ‼️

Please see the link in tweet #2 if you’d like to join.