Tagged Questions

Stata is a commercial general-purpose statistical software. Stata is available for Windows, Mac and Unix systems. Stata's capabilities include data management, statistical analysis and graphics. Official Website Stata FAQ's Stata mailing list Resources to help you learn and use Stata

learn more… | top users | synonyms

16
votes
3answers
607 views

send code from vim to an external application for execution

I am regularly using stata at work. My text editor of choice is (g)vim. I have been using the scripts provided here or here to send code from vim to stata. This functionality is immensely practical ...
13
votes
9answers
255 views

Examples of the perils of globals in R and Stata

In recent conversations with fellow students, I have been advocating for avoiding globals except to store constants. This is a sort of typical applied statistics-type program where everyone writes ...
8
votes
3answers
221 views

Reading in only part of a Stata .DTA file in R

I apologize in advance if this has a simple answer somewhere. It seems like the kind of thing that would, but I can't seem to locate it in the help files, by searching SO, or by Googling. I'm ...
7
votes
2answers
453 views

Frequency weighting in R, comparing results with STATA

I'm trying to analyze data from the University of Minnesota IPUMS dataset for the 1990 US census in R. I'm using the survey package because the data is weighted. Just taking the household data (and ...
6
votes
4answers
580 views

How to rewrite this Stata code in R?

One of the things Stata does well is the way it constructs new variables (see example below). How to do this in R? foreach i in A B C D { forval n=1990/2000 { local m = 'n'-1 ...
6
votes
3answers
539 views

sending code from vim to stata

I have been using Vim to write Stata scripts in Windows for a while now at the university. I am learning R at the moment, and I want to switch completely to Linux as my OS (I've recently switched to ...
6
votes
5answers
540 views

Migrating from Stata to Python

Some coworkers who have been struggling with STATA 11 are asking for my help to try to automate their laborious work. they mainly use 3 commands in stata: tsset (sets a time series analysis) as ...
5
votes
1answer
165 views

merge command comparison between R and STATA

Being a R user, I am learning STATA now using this resources, and puzzled about the merge command. In R, I don't have to worry about merging data wrong, because it merges everything anyway, I don't ...
5
votes
1answer
113 views

Help interpreting/converting odd date format

I have data pulled from a database and stored in Stata .dta files. But when I read it into R using the foreign package, I get a date format unlike any I've seen. All of the other dates are "%m/%d/%Y" ...
5
votes
1answer
368 views

Heteroscadicity robust standard errors with the PLM package

I am trying to learn R after been using STATA and I must say that I love it. But now I am having som trouble. I am about to do some multiple regressions with Panel Data so I am using the plm package. ...
5
votes
2answers
283 views

Calling Stata Functions from R

Is it possible to call Stata functions from R?
5
votes
2answers
257 views

is there an R function for Stata's xtnbreg?

Have been using STATA to run negative binomial regressions in a replication. Not sure what is under the hood on how STATA does this, but wanted to know if there is an R function/package that does the ...
4
votes
2answers
136 views

Save .dta files in python

I'm wondering if anyone knows a Python package that allows you to save numpy arrays/recarrays in the .dta format of the statistical data analysis software STATA. This would really speed up a few steps ...
3
votes
5answers
168 views

Alternative IDE for STATA

I get used of R-studio for R, which have some features like guess what function you are try to type by pressing TAB. But I can't find any IDE for STATA, is there one for STATA? Thanks.
3
votes
4answers
2k views

In Stata how do you assign a long list of variable names to a local macro?

I have many variables whose name begins with the prefix "indoor". What comes after "indoor" is not numeric (that would make everything simpler). I want a tabulation for each of these variables. So I ...
3
votes
3answers
427 views

Creating “GDP in 1960” variable from GDP variables for different years

I'm pretty new to stata... I have a set of observations of the form "Country GDP Year". I want to create a new variable GDP1960, which gives the GDP in 1960 of each country for each year: USA ...
2
votes
1answer
24 views

How to pass `noconstant` or other options from wrapper program to inside `regress` call

I would like to pass the noconstant option from a wrapper program to an inside regress call. The following solution works, but it seems particularly janky and not extensible if I would like to pass ...
2
votes
1answer
118 views

Add a column of differences to tables of summary statistics in Stata

If I make a two way summary statistics table in Stata using table, can I add another column that is the difference of two other columns? Say that I have three variables (a, b, c). I generate ...
2
votes
1answer
113 views

How to make a group by statement (from MySQL) in STATA?

I am not a statistic guy but have to deal with quite some data. In most cases these data sets come from an online survey, hence I do have a MySQL database and know how to get some results out of that. ...
2
votes
0answers
66 views

How to read Stata binary format from a compressed file

The Stata knowledge base includes a note on reading ASCII data from a pipe, which would allow one to read a file without storing the decompressed version on disk. We have never had success with the ...
2
votes
1answer
149 views

How to Aggregate Relational Data in Stata?

I can't wrap my head around the following Stata programming problem: I have a table listing all car purchases by customers and make: Customer | Make | Price ----------------------- c1 | m1 | ...
2
votes
1answer
176 views

Stata: Check if a local macro is undefined

I'm writing a stata program in a .do file, and would like to provide default values if the user does not supply some parameters. To do so, I'd like to check if a macro is undefined. I've come up with ...
2
votes
4answers
152 views

What types of languages allow programmatic creation of variable names?

This question comes purely out of intellectual curiosity. Having browsed the python section relatively often, I've seen a number of questions similar to this, where someone is asking for a ...
2
votes
2answers
147 views

How can I generate multicore load on Stata/MP?

I'm working on monitoring CPU and memory usage of Stata/MP (the multicore version of Stata/SE) but I am not a Stata programmer (more of a Perl guy). Can anyone post some code that utilizes a public ...
2
votes
1answer
211 views

Reshaping Data in “chains” format (stata .DTA file)

I've got data in "chain" format where there are subjects that get a treatment "locks" and subjects, or "links", that are recruited from each "lock". Therefore , my data are shaped both widely and ...
2
votes
4answers
316 views

Is Stata Turing-complete?

I've been doing some statistics work with Stata recently and not enjoying it very much. It doesn't feel to me like it's a "proper" programming language: in particular I don't think there's a way to ...
2
votes
1answer
365 views

Using textmate with applications accessed through ssh

I like using textmate to edit scripts for my analysis using R, Stata and SQL. Recently, I've had to use our grid server environment because the datasets are too large for my computer, and the ram ...
2
votes
1answer
309 views

Automation for Generating Reports

We are using Stata to combine and analyze data for all of our agencies in a district each month. I'd like to somehow create reports of the data analysis automatically for these monthly reports. The ...
1
vote
1answer
61 views

Fixed lag smoothing state space model

I would like to compute fixed lag smoothing estimates of the state variable in a state space model. These are estimations of the state variable at one point in time given information for several ...
1
vote
1answer
65 views

5-by-5 matrix of `tabulate twoway` frequency count tables in Stata

I would like to create a 5-by-5 grid of tabulate twoway frequency count tables, like the following table. Generating each sub-table is easy with nested foreach loops, but the long list output is ...
1
vote
2answers
158 views

Generate table of means with variables in rows and quantiles of a given variable in columns in Stata

... and add columns for differences and t-statistics. I learned how to make a quantile by quantile table of means and how to add a column/row of differences here (thanks to @lejohn). Now instead of ...
1
vote
2answers
226 views

How to speed up rolling regressions in Stata

Should I avoid rolling and manually code rolling regressions? Or am I better off creating a giant panel with overlapping entries and using statsby? I.e., give each window it's own by entry. In R I can ...
1
vote
2answers
73 views

Access to list elements in STATA

Imagine you have to run the following in STATA `tab var1 region if var1 > 4 tab var2 region if var2 > 32 tab var3 region if var3 > 7` and so on for many varables. Notice that the filter IF depends ...
1
vote
1answer
171 views

Grouping with STATA with two or more variables as in GROUP BY (SQL)

In SQL it is possible to group with several variables: SELECT a, b, COUNT(*) FROM t GROUP BY a, b What we get is table is table with the levels of b nested in the level of a. How can this ...
1
vote
1answer
148 views

Stata and R results not matched in Logistic Regression with two categorical predictors and their interaction [closed]

I am getting confused when i am trying to compare the results of Stata and R. I am using example given on the webpage http://www.ats.ucla.edu/stat/stata/webbooks/logistic/chapter2/default.htm First ...
1
vote
2answers
211 views

Perform Fisher Exact Test from aggregrated using STATA

I have a set of data like below: A B C D 1 2 3 4 2 3 4 5 They are aggregrated data which ABCD constitutes a 2x2 table, and I need to do fisher exact test on each row, and add a new column for the ...
1
vote
1answer
123 views

How to run ado file in another ado file in STATA?

In R, I can run another R script using source("script.R") How can I do the same in STATA? Thanks.
1
vote
1answer
143 views

how to convert date in STATA?

I have a date with a format like below, and I use R to convert it from string to date date <- "20 Nov 2010 21:44:00:000" strptime(date,"%d %b %Y %H:%M:%S") I want to do it in STATA, but how? I ...
1
vote
1answer
143 views

Is there a MacOS ODBC driver that reads SQL-command text files?

I've been searching without luck for a MacOS iODBC driver that can read saved .SQL files exported in Microsoft SQL Server format. Does one exist? We've got a large pile of research data stored in one ...
1
vote
1answer
92 views

Error in nchar() when reading in stata file in R on Mac

I'm learning R and am simply trying to read in a stata data file but am getting the error below: X <- Stata.file(Stata_File) Error in nchar(varlabs) : invalid multibyte string 253 Multiple Mac ...
1
vote
1answer
130 views

Stata behaviour on macros, different outputs

I have a manual list I created in a macro in stata, something like global list1 "a b c d" which I later iterate through with something like foreach name in $list1 { action } I am trying to ...
1
vote
2answers
82 views

Ternary Comparison Operator in Stata?

In my Stata do scripts, I often have to compare dates which may be missing. Unfortunately, the internal representation of . is the largest possible number of the given range, so the following holds: ...
1
vote
2answers
156 views

Is there a way to access STATA from eclipse?

… similar to the StatET plugin that allows you to run R code from Eclipse? I tried googling it but nothing useful has turned up.
1
vote
2answers
227 views

Stata programming language without syntax?

I recently got into Stata coming from a procedural/OO/functional background, and am having trouble understanding the basic elements of the language. For example, I discovered that there is a syntax ...
1
vote
2answers
333 views

xtpcse from Stata - how to rewrite in R

I am currently learning R. I have no previous knowledge of STATA. I want to reanalyze a study which was done in Stata (xtpcse linear regression with panel-corrected standard errors). I could not ...
1
vote
2answers
145 views

Circumventing R's `Error in if (nbins > .Machine$integer.max)`

This is a saga which began with the problem of how to do survey weighting. Now that I appear to be doing that correctly, I have hit a bit of a wall (see previous post for details on the import process ...
1
vote
4answers
229 views

Equivalent function of R's “%in%” for Stata

Is there an equivalent function of "%in%" from R for Stata?
1
vote
2answers
204 views

How to get Stata to report zeroes in tabulate

I'm trying to use the tabulate function in Stata to create a time series of frequencies. The problem arises when I try to combine the output of tabulate after running through each date. Tabulate will ...
0
votes
1answer
105 views

Looking for a sample program to test Stata/MP

I recently purchase a Stata MP12(8 cores) license running on a Linux server. Does anyone has written a Stata programme, say a simulation study to test the performance of Stata MP? I would like to ...
0
votes
1answer
53 views

Add depvar control mean to regression table output

This is a 2-arm randomized control trial. In my regression output I want to evaluate the relative reduction in risk of disease for those in the treatment group. To make this evaluation easier I would ...

1 2