How to read and write Stata data (.dta) files into R
[This article was first published on Coffee and Econometrics in the Morning, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Here’s an R tutorial where I explain how to read Stata data files into R (even if you don’t own the program Stata). I also offer some other basic tips.Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Of note, you can also write Stata .dta files from R (if your coauthors or journals insist on having “.dta” data).
Suppose your R data frame has the name fuzzybunny and you want to save the file to the C: drive as myfuzzydata.dta. After loading the foreign library,
library(foreign)
Here’s the syntax:
write.dta(fuzzybunny, “C://myfuzzydata.dta”)
Try it out and impress your friends (you know, the friends who only know how to use Stata).
To leave a comment for the author, please follow the link and comment on their blog: Coffee and Econometrics in the Morning.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.