Description Usage Format Source References Examples
yearly observations of 48 States from 1978 to 2007
number of observations : 1440
number of time-series : 30
country : United States
package : limdeppanel
JEL codes: C78, D72, H61, H72
Chapter : 08
1 |
A dataframe containing:
the state
the year
late budget ?
number of days late for the budget
unemployment variation
split branch
split legislature
election year
end of year balances in the general fund and stabilization fund
democrat governor ?
lameduck
number of years since the incumbent governor took office
new governor ?
the polulation
percentage of population aged 5-17
percentage of population aged 65 or older
does the state law does not allow a budget deficit to be carried over to the next fiscal year ?
is a super majority required to pass each budget ?
full time legislature ?
shutdown provision ?
percentage of blacks
percentage of graduates
census response rate
five year dummies, one of '93-97', '98-02', '03-07'
is there a deadline ? one of 'none', 'soft' and 'hard'
American Economic Association Data Archive : https://www.aeaweb.org/aer/
Andersen, Asger Lau; Lassen, David Dreyer and Lasse Holboll Westh Nielsen (2012) “Late Budgets”, American Economic Journal, Economic Policy, 4(4), 1-40, doi: 10.1257/pol.4.4.1 .
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #### Example 8-4
## ------------------------------------------------------------------------
data("LateBudgets", package = "pder")
library("plm")
LateBudgets$dayslatepos <- pmax(LateBudgets$dayslate, 0)
LateBudgets$divgov <- with(LateBudgets,
factor(splitbranch == "yes" |
splitleg == "yes",
labels = c("no", "yes")))
LateBudgets$unemprise <- pmax(LateBudgets$unempdiff, 0)
LateBudgets$unempfall <- - pmin(LateBudgets$unempdiff, 0)
form <- dayslatepos ~ unemprise + unempfall + divgov + elecyear +
pop + fulltimeleg + shutdown + censusresp + endbalance + kids +
elderly + demgov + lameduck + newgov + govexp + nocarry +
supmaj + black + graduate
## ------------------------------------------------------------------------
FEtobit <- pldv(form, LateBudgets)
summary(FEtobit)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.