If you have run mixed models much at all, you have undoubtedly been haunted by some version of this very obtuse warning: “The Hessian (or G or D) Matrix is not positive definite. Convergence has stopped.”
Or “The Model has not Converged. Parameter Estimates from the last iteration are displayed.”
What on earth does that mean?
Let’s start with some background. If you’ve never taken matrix algebra, (more…)
One issue in data analysis that feels like it should be obvious, but often isn’t, is setting up your data.
The kinds of issues involved include:
- What is a variable?
- What is a unit of observation?
- Which data should go in each row of the data matrix?
Answering these practical questions is one of those skills that comes with experience, especially in complicated data sets.
Even so, it’s extremely important. If the data isn’t set up right, the software won’t be able to run any of your analyses.
And in many data situations, you will need to set up the data different ways for different parts of the analyses. (more…)
In part 2 of this series, we got started on the various menus in Stata. This post covers an important menu that you’ll probably use often: the graphics menu.
What’s in the Graphics menu
The graphics menu provides an impressive variety of options for creating just about any graph you might need.
Take a look at the menu. It includes everything from univariate graphs like bar charts and pie charts to more complex, multivariate plots. Go ahead and explore some of the graphs available in the menu.
A comprehensive resource for a full understanding of the graphics you can do in Stata is the Stata Graphics Reference Manual, which is a free pdf download from the Stata web site. At nearly 800 pages, though, it’s not a quick read (it is excellent, though!).
A much quicker read is the Stata Data Visualization Cheat Sheet. Pages 5 – 6.
Browsing this two-page resource will tell you a lot about what you can do in Stata graphics. This includes not only which kinds of graphs you can create, but how to customize a graph’s appearance, apply themes, and save plots.
But first let’s explore how easy it is to create a simple, but customized plot using only the menus.
An Example of creating a Scatter plot using menus
To show an example, we’ll use the auto data. If you haven’t loaded up the data in your current session, type the following into your command line
sysuse auto
Note that you could also open this data set using the File menu, but this is a command that is so simple, it’s faster to just type it into the command line.
As you’ll see, every time you use the menus, Stata fills in the associated commands for you into the command line
Now say we want to make a scatter plot with price on the y axis, and mpg on the x axis, but only for observations where the gear ratio is less than 3. We want this graph to have red triangles representing points, and we want it to have informative titles:
We click on Graphics -> Twoway graph. In the plots window click Create and select Basic plots -> Scatter.
Choose price as the y variable and mpg as the x variable; don’t press accept yet.
Under Marker properties choose Triangle as the symbol and Red as the color. Also notice you can also change the size or opacity of points or mark particular observations.
Click accept, then click accept on the next page.
Under the if/in tab, type “gear_ratio<3
” so only observations with a gear ratio less than 3 are plotted; click on Y axis.
Under the Y axis tab type the title “Price”, and under the X axis tab type the title “MPG”. Note how you can also change properties of the axis.
In the Titles tab type an appropriate title for the graph – I chose “Price and Mileage”.
We don’t want to see a legend so in the Legend tab choose “hide legend”.
You can now press ok and should see the following graph:
You’ll also see that Stata put this code put to the console:
twoway (scatter price mpg, mcolor(red) msymbol(triangle)) if gear_ratio<3, ytitle(`"Price"') xtitle(`"MPG"') title(`"Price and Mileage"') legend(off)
Now you know how to make this graph and similar ones with syntax as well! If you’re ever having trouble creating a certain chart using code, the graph menu can provide an easier way to select the options you want.
Note: when you make plots in Stata menus, make sure to always make a new plot rather than layering on an old one. If you press create when you already have a plot selected, your new scatterplot will layer on top of the old one.
by James Harrod
Getting Started with Stata Tutorial #4: Do-files
About the Author:
James Harrod interned at The Analysis Factor in the summer of 2023. He plans to continue into a career as an actuary, and hopes to continue finding interesting ways of educating people about statistics. James is well-versed in R and Stata programming and enjoys teaching the intuition behind common statistical methods. James is a 2023 graduate of the University of Rochester with bachelor’s degrees in Statistics and Economics.
A great way to get started with Stata is using its menus.
The first part of this Tutorial Series introduced you to Stata’s windows. You can now begin learning how to use Stata to work with data.
Across the top are 8 tabs: File, Edit, Data, Graphics, Statistics, User, Window, and Help.
We will not go through every option within the Stata menus. Instead, we’ll highlight a few options to get you started. In this article, we’ll start with three of the most useful menus: File, Data, and Help, along with those helpful icons under the menus.
In our next article, we’ll look at two more: Graphics and Statistics.
(more…)
So, you want to get started with Stata?
Good choice!
At The Analysis Factor we recommend first becoming proficient in one statistical software. Then once you’ve progressed up to learning Stage 3 skills, adding a second statistical software. Whether it’s your first, second, or 5th statistical software, Stata has a lot that makes it worth learning.
When I first started using Stata, I remember being confused by the variety of menus and windows, the strange syntax of the code, the way it handled datasets… and what the heck is a do file? (more…)
One big advantage of R is its breadth. If anything has been done in statistics, there is an R package that will do it.
The problem is that sometimes there are four packages that will do it. This is big problem with R (and with Python for that matter). (more…)