Description Usage Format Source References Examples
yearly observations of 53 banks from 1990 to 2000
number of observations : 583
number of time-series : 11
country : Turkey
package : productionpanel
JEL codes: D24, G21, L33
Chapter : 02
1 |
A dataframe containing:
bank id
the years
one of "conventional"
and "islamic"
price of labor
price of borrowed funds
price of physical capital
output, total loans
total cost
employee expenses
number of employees
assets expenses
fixed assets
total interest expenses (interest on deposits and non-deposit funds + other interest expenses),
borrowed funds (deposits + non-deposit funds)
deposits
non-deposits
non performing loans
equity capital
quality index
risk index
total assets
total securities (only for conventional banks)
Journal of Applied Econometrics Data Archive : http://qed.econ.queensu.ca/jae/
Mahmoud A. El-Gamal and Hulusi Inanoglu (2005) “Inefficiency and Heterogeneity in Turkish Banking: 1990-2000”, Journal of Applied Econometrics, 20(5), 641–664, doi: 10.1002/jae.835 .
1 2 3 4 5 6 7 8 9 10 11 12 | #### Example 2-5
## ------------------------------------------------------------------------
data("TurkishBanks", package = "pder")
library("plm")
TurkishBanks <- na.omit(TurkishBanks)
TB <- pdata.frame(TurkishBanks)
summary(log(TB$output))
ercomp(log(cost) ~ log(output), TB)
models <- c("within", "random", "pooling", "between")
sapply(models, function(x)
coef(plm(log(cost) ~ log(output), TB, model = x))["log(output)"])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.