Is it possible to call Stata functions from R?
|
feedback
|
|
Not directly, ie there is no package I am aware of that implements a bridge. You can always call external programs using | |||
feedback
|
|
the real problem is that stata doesnt have an interactive interpreter you can pass arguments to Dirk is right, you can just go ahead and write the data to a common format (if size is large and speed is an issue, fixed width is safe, but you can also just use .dta throughout the process, using read.dta in R and natively reading in stata. Also, in R you can call to the system() you can pass a do file or a string containing a bunch of stata commands. So, generally, trying to use stata for this or that task may or may not be worth it, especially if an R equivalent is close by. | |||
|
feedback
|