Stata For Students



  1. Stata For Students Free
  2. Stata Software For Free
  3. Stata Student Edition
  4. Stata Student Version
  5. Free Stata License
Stata For Students

There are times we need to do some repetitive tasks in the process of data preparation, analysis or presentation, for instance, computing a set of variables in a same manner, rename or create a series of variables, or repetitively recode values of a number of variables. In this post, I show a few of simple example “loops” using Stata commands -foreach-, -local- and -forvalues- to handle some common simple repetitive tasks.

For
  1. Stata for Students: Using Stata Stata is a popular statistical program at the SSCC that is used both for research and for teaching statistics. Stata for Students is focused on the latter and is intended for students taking classes that use Stata.
  2. MATLAB and Simulink Student Suite Includes MATLAB, Simulink, and 10 of the most widely used add-on products, as well as built-in support for prototyping, testing, and running models on.

-foreach-: loop over items

Student or not, college-age adults are at high risk for sexual violence. Male college-aged students (18-24) are 78% more likely than non-students of the same age to be a victim of rape or sexual assault. 1; Female college-aged students (18-24) are 20% less likely than non-students of the same age to be a victim of rape or sexual assault. Data & Statistics Emergency Preparedness Injury, Violence & Safety Environmental Health Workplace Safety & Health Global Health State, Tribal, Local & Territorial Disease or Condition of the Week Vital Signs Publications Social & Digital Tools Mobile Apps CDC-TV CDC Feature Articles CDC Jobs Podcasts.

Consider this sample dataset of monthly average temperature for three years.

Now the mean temperatures of each month are in Centigrade, if we want to convert them to Fahrenheit, we could do the computation for the 12 variables.

However this takes a lot of typing. Alternatively, we can use the -foreach- command to achieve the same goal. In the following codes, we tell Stata to do the same thing (the computation: c*9/5+32) for each of the variable in the varlist – mtemp1 to mtemp12.

Stata For Students Free

Stata software for students

Note that braces must be specified with -foreach-. The open brace has to be on the same line as the foreach, and the close brace must be on a line by itself. It’s crucial to close loops properly, especially if you have one or more loops nested in another loop.

-local-: define macro

Stata Software For Free

This was a rather simple repetitive task which can be handled solely by the foreach command. Here we introduce another command -local-, which is utilized a lot with commands like foreach to deal with repetitive tasks that are more complex. The -local- command is a way of defining macro in Stata. A Stata macro can contain multiple elements; it has a name and contents. Consider the following two examples:

Define a local macro called mcode and another called month, alter the contents of mcode in the foreach loop, then display them in a form of “mcode: month”.

Note when you call a defined macro, it has to be wrapped in “`” (left tick) and “‘” (apostrophe) symbols.

Stata Student Edition

Rename multiple variables

Take the temperature dataset we created as an example. Let’s say we want to rename variables mtemp1-mtemp12 as mtempjan-mtenpdec. We can do so by just tweaking a bit of the codes in the previous example.

Define local macro mcode and month, then rename the 12 vars in the foreach loop.

Stata software for students

We can obtain the same results in a slightly different way. This time we use another 12 variables fmtemp1-fmtemp12 as examples. Again, we will rename them as fmtempjan-fmtempdec.

Define local macro month, then define local macro monthII in the foreach loop with specifying the string function word to reference the contents of the local macro month.

I usually run -display- to see how the macro looks like before actually applying the defined macro on tasks like changing variable names, just to make sure I don’t accidentally change them to some undesired results or even cause errors; however the display line is not necessary in this case.

Here we rename them back to fmtemp1-fmtemp12.

-forvalues-: loop over consecutive values

The -forvalues- command is another command that gets to be used a lot in handling repetitive works. Consider the same temperature dataset we created, suppose we would like to generate twelve dummy variables (warm1-warm12) to reflect if each of the monthly average temperature is higher than the one in the previous year. For example, I will code warm1 for the year of 2014 as 1 if the value of fmtemp1 for 2014 is higher than the value for 2013. I will code all the warm variables as 99 for the year of 2013, since they don’t have references to compare in this case.

We can do this by running the following codes, then repeat them for twelve times to create the twelve variables warm1-warm12.

However this takes a lot of typing and may even create unwanted mistakes in the process of typing or copy-paste them over and over.

Stata Student Version

Instead, we can use -forvalues- to do so:

Reference
Baum, C. (2005). A little bit of Stata programming goes a long way… Working Papers in Economics, 69.

View the entire collection of UVA Library StatLab articles.

Free Stata License

Yun Tai
CLIR Postdoctoral Fellow
University of Virginia Library