cigDemand {pdynmc} | R Documentation |
Balanced panel dataset on annual cigarette consumption in the US for the 48 continental states in the years 1985 until 1995. The dataset is available from Stock and Watson (2003) and used in Stock and Watson (2019) and Fritsch et al. (2024). Gratitude is owed to Jonathan Gruber of MIT for providing the data.
data(cigDemand)
A dataset with 528 rows and 9 variables containing:
state
year
consumer price index (US)
state population
number of cigarette packs sold per capita and year
state personal income (total, nominal)
average federal, state, and local excise taxes on cigarettes for fiscal year in cents per pack
average price during fiscal year in cents per pack (including sales taxes)
average excise tax for fiscal year in cents per pack (including sales taxes)
Fritsch M, Pua AAY, Schnurbus J (2024).
“Teaching Advanced Topics in Econometrics using Introductory Textbooks: The Case of Dynamic Panel Data Methods.”
Working Paper.
Stock JH, Watson MM (2019).
Introduction to Econometrics, Fourth edition.
Pearson.
Stock JH, Watson MW (2003).
“cig_ ch10, cig85_95, Instructional Stata datasets for econometrics cig8595.”
https://ideas.repec.org/p/boc/bocins/cig8595.html.
## Not run:
data(cigDemand, package = "pdynmc")
packs <- cigDemand$packpc
tax <- cigDemand$tax
\donttest{plot(y = packs, x = tax)}
## End(Not run)