The errata for An Introduction to Stata Programming are provided below. Click here for an explanation of how to read an erratum. Click here to learn how to determine the printing number of a book.
| (1) | Chapter 3, p. 55, last example |
|---|
forvalues i = 11/15 {
rename v‘i’ = x ‘=1960 + ‘i’’
}
|
forvalues i = 11/15 {
rename v‘i’ x‘=1960 + ‘i’’
}
|
| (1) | Chapter 7, p. 158, fifth command in example |
|---|
. local ncty: word count country |
. local ncty: word count `country' |


