Function

Basic command
poisson depvar indepvars
Useful options
poisson depvar indepvars, irr
Explanations
depvarInsert the name of the y-variable.
indepvarsInsert the name of the x-variable(s) that you want to use.
irrProduces incidence rate ratios.
More information
help poisson

Note
The Poisson command produces log incidence rates, unless otherwise specified.

A walk-through of the output

When we perform a Poisson regression in Stata, the table looks like this:

In this example, yvar is a count variable ranging between 0 and 365, whereas xvar1 is a binary (0/1) variable and xvar2 is a continuous variable ranging between 100 and 500.

The upper part of the table shows a model summary. This is what the different rows mean:

Log likelihoodThis value does not mean anything in itself, but can be used if we would like compare nested models.
Number of obsThe number of observations included in the model.
LR chi2(x)The likelihood ratio (LR) chi-square test. The number within the brackets shows the degrees of freedom (one per variable).
Prob >chi2Shows the probability of obtaining the chi-square statistic given that there is no statistical effect of the x-variables on y. If the p-value is below 0.05, we can conclude that the overall model is statistically significant.  
Pseudo R2A type of R-squared value. Seldom used.

The lower part of the table presents the parameter estimates from the analysis.

 The first column lists the y-variable on top, followed by our x-variable(s).
The last row represents the constant (intercept).
IRRThese are the incidence rate ratios.
Std. Err.The standard errors associated with the coefficient.
ZZ-value (coefficient divided by the standard error of the coefficient).
P>|z|P-value.
[95% Conf. Interval]95% confidence intervals (lower limit and upper limit).

The analytical sample used for the examples

In the subsequent sections, we will use the following variables:

Dataset
StataData1.dta
Variable namechildren
Variable labelNumber of children (Age 40, Year 2010)
Value labelsN/A
Variable namesiblings
Variable labelNumber of siblings (Age 15, Year 1985)
Value labelsN/A
Variable namesex
Variable labelSex
Value labels0=Man
1=Woman
Variable nameeduc
Variable labelEducational level (Age 40, Year 2010)
Value labels1=Compulsory
2=Upper secondary
3=University

sum children siblings sex educ

We define our analytical sample through the following command:

gen pop_poisson=1 if children!=. & siblings!=. & sex!=. & educ!=.

This means that new the variable pop_poisson gets the value 1 if the four variables do not have missing information. In this case, we have 9,014 individuals that are included in our analytical sample.

tab pop_poisson