Package easi. February 15, 2013

Size: px
Start display at page:

Download "Package easi. February 15, 2013"

Transcription

1 Package easi February 15, 2013 Type Package Title EASI Demand System Estimation Version 0.2 Date Author Stephane Hoareau Guy Lacroix, Mirella Hoareau, Luca Tiberti Maintainer Stephane Hoareau Description easi is a package for R enabling the estimation of the Exact Affine Stone Index demand system of Pendakur and Lewbel (2009). However, more than just a transcript, it offers a number of extensions in an unified framework. Firstly, it allows to calculate elasticities (income elasticities, price elasticities and demographic elasticities) and their standard deviations. Secondly, it enables the calculation and the graphical representation of Engel curves and their confidence interval. Thirdly, it provides simulation tools to assess the impact of price changes, income changes and demographic changes on fitted budget shares, elasticities, and their standard deviations. Finally, easi allows the computation of equivalent incomes. License GPL (>= 2.0) Depends systemfit, stats, micecon LazyLoad yes Repository CRAN Date/Publication :16:12 NeedsCompilation no 1

2 2 concavity R topics documented: concavity easi elastic engel equiv.income hixdata simulations Index 16 concavity Concavity of EASI cost function Description This function provide a test of local concavity Usage concavity(object = object) Arguments object an object of type easi which contains all the information about the previous estimates. Here, in particular, the estimates of the easi system. Details A semi-negative definite Hessian matrix is a necessary and sufficient condition to consider that the cost function is concave. The calculation of Hessian matrix and the test of local concavity is performed in the context of the easi package. Value a A string that indicates the result of the test References Arthur Lewbel and Krishna Pendakur "Tricks with Hicks : The EASI Demand System" The American Economic Review 99(3), , Krishna Pendakur "EASI made Easier", made Easier.pdf, 2008.

3 easi 3 Examples data(hixdata) #******* Budget shares Matrix ***************** shares_hix=hixdata[,2:10] #******* price Matrix (in logarithms) ********* log.price_hix=hixdata[,11:19] #******* demographic matrix ******************* var.soc_hix=hixdata[,21:25] #******* logarithm of total expenditure ******* #******* (here divised by a price index) ****** log.exp_hix=hixdata[,20] #******* estimation *************************** est <- easi(shares=shares_hix,log.price=log.price_hix, var.soc=var.soc_hix,log.exp=log.exp_hix) #******* test of local concavity ************** concavity(est) easi Exact Affine Stone Index (EASI) Demand System Estimation Description This function estimates the Exact Affine Stone Index (EASI) Demand System of Pendakur and Lewbel (2009). Usage easi(shares = shares, log.price = log.price, var.soc = var.soc, log.exp = log.exp, y.power=false, labels.share=false, labels.soc=false, py.inter=false, zy.inter=false, pz.inter=false, interpz=false) ## S3 method for class easi coef(object,...) ## S3 method for class easi residuals(object,...) ## S3 method for class easi summary(object,...) ## S3 method for class easi predict(object,...) ## S3 method for class easi vcov(object,...)

4 4 easi Arguments shares the matrix of budget shares. log.price the matrix of log.prices (in logarithms). var.soc the matrix of demographic variables. log.exp the logarithm of total expenditure. y.power the highest power of y (implicit utility). Default is y.power=3. labels.share a string which contains the names of budget shares. For example, labels.share = c ("foods", "non foods", "others") indicates that the respective names of the three shares in the budget system are "foods", "non foods" and "others". labels.soc a string which contains the names of demographic variables. For example, labels.soc = c ("age", "gender", "hsize") indicates that the respective names of the three demographic variables in the budget system are "age", "non foods" and "hsize". py.inter a logical variable which is fixed to TRUE (FALSE otherwise) if the user wants to enable the interaction between the price variables and y (implicit utility). zy.inter a logical variable which is fixed to TRUE (FALSE otherwise) if the user wants to enable the interaction between the demographic variables and y (implicit utility). pz.inter a logical variable which is fixed to TRUE (FALSE otherwise) if the user wants to enable the interaction between prices and demographic variables. interpz a vector which allows to choose which demographic variables to interact with prices. For example, interpz=c(3) means that prices are interacted with the third demographic variable while interpz = c (1:n) means that prices are interacted with the first n demographic variables. object an object of type easi which contains all informations about the previous estimates. Here, in particular, the estimates of the easi system.... others options. Details The EASI demand system, in the form of budget shares, is given by (for each good j [1 : J]): w j = R r=1 bj ry r + T t=1 gj t z t + T T k=1 t=1 a jktz t ln p k + J k=1 b jk ln p k y + T t=2 hj tz t y + ε j, where w is the matrix of budget shares, R is the hightest power of implicit utility y, T denotes the number of demographic variables, z is the matrix of demographic variables, J is the number of goods and p is the matrix of prices. Implicit utility y is given by:. y = ln x J j=1 w j ln p j + 1/2 J J j=1 k=1 a jktz t ln p j ln p k 1 1 J J 2 j=1 k=1 b jk ln p j ln p k The system is estimated by an iterated linear 3SLS. This estimator is similar to the estimator suggested by Blundell and Robin (1999) for the QUAIDS, except for the treatment of the endogeneity of w j ln p j.

5 easi 5 Value an object of class c("easi", "systemfit"). A "easi" object has the following elements : summary fitted.w Residuals CoefCov y varlist shares log.price var.soc log.exp y.power neq nsoc py.inter zy.inter pz.inter interpz labels.shares summary of estimation. the matrix of fitted budget shares. the matrix of residuals. the covariance matrix of the estimates. the implicit utility. the list of all variables. the matrix of budget shares. the matrix of prices (in logarithms). the matrix of demographic variables. the logarithm of total expenditure. the highest power of y (implicit utility) in the system. the number of goods (Excluding the last good). the number of demographic variables. a logical variable which is fixed to TRUE (FALSE otherwise) if the user wants to enable the interaction between the price variables and y (implicit utility). a logical variable which is fixed to TRUE (FALSE otherwise) if the user wants to enable the interaction between the demographic variables and y (implicit utility). a logical variable which is fixed to TRUE (FALSE otherwise) if the user wants to enable the interaction between prices and demographic variables. a vector which allows to choose the demographic variables to interact with prices. For example, interpz=c(3) means that prices are interacted with the third demographic variable, while interpz = c (1:n) means that prices are interacted with the first n demographic variables. a string which contains the names of budget shares. For example, labels.shares = c ("foods", "non foods", "others") indicates that the names of the three shares in the budget system are "foods", "non foods" and "others", respectively. labels.price a string which contains the names of prices. For example, labels.price = c ("pfoods", "pnonfoods", "pothers") indicates that the names of the three log.prices variables in the budget system are: "pfoods", "pnonfoods" and "pothers", respectively. labels.soc interact fit3sls varlist dim_varlist a string which contains the names of the demographic variables. For example, labels.soc = c ("age", "gender", "hsize") indicates that the names of the three demographic variables in the budget system are "age", "non foods" and "hsize", respectively. a logical variable which is fixed to TRUE if at least one of the variables in either zy.inter, py.inter or pz.inter is fixed to TRUE. object of class systemfit. list of all variables. number of variables.

6 6 elastic References Arthur Lewbel and Krishna Pendakur "Tricks with Hicks : The EASI Demand System" The American Economic Review 99(3), , Krishna Pendakur "EASI made Easier", made Easier.pdf, Examples data(hixdata) #******* Budget shares Matrix ************ shares_hix=hixdata[,2:10] #******* price Matrix (in logarithms) **** log.price_hix=hixdata[,11:19] #******* Demographic matrix ************** var.soc_hix=hixdata[,21:25] #******* logarithm of total expenditure ** #******* (here divised by a price index) * log.exp_hix=hixdata[,20] #******* Estimation... ******************* est <- easi(shares=shares_hix,log.price=log.price_hix, var.soc=var.soc_hix,log.exp=log.exp_hix) #******* Coefficients ******************** coef(est) #******* Summary ************************* summary(est) #******* fitted values ******************* head(predict(est)) #******* Residuals *********************** head(residuals(est)) #******* Covariance Matrix *************** dim(vcov(est)) elastic Elasticities of EASI demand system Description This function calculates price elasticities, demographic elasticities and income elasticities. Usage elastic(object = object, type = c("price", "income", "demographics"), sd = FALSE)

7 elastic 7 Arguments object type sd an object of type easi which contains all the information about the previous estimates. Here, in particular, the estimates of the easi system. type can take values "price", "demographics" or "income" if one wants to calculate price elasticities, demographics elasticities or income elasticities, respectively. sd (for standard deviations) must be specified as TRUE if one wants to calculate the standard deviations (FALSE otherwise). Details Value The equations for the budget shares elasticities are presented in Pendakur and Lewbel. The elasticities for quantities are derived in the context of the easi package. EP ER EZ EPS EPQ EP_SE ER_SE EZ_SE ELASTPRICE ELASTINCOME ELASTPRICE_SE semi-elasticities of budget shares with respect to prices. semi-elasticities of budget shares with respect to real expenditures. semi-elasticities of budget shares with respect to demographics. matrix of compensated quantity derivatives with respect to unlogged prices. compensated (good-specific) expenditures with respect to prices. standard deviations of semi-elasticities of budget shares with respect to prices. standard deviations of semi-elasticities of budget shares with respect to real expenditures. standard deviations of semi-elasticities of budget shares with respect to demographics. elasticities of quantities with respect to prices. elasticities of quantities with respect to income. standard deviations of Elasticities of quantities with respect to prices. ELASTINCOME_SE standard deviations of Elasticities of quantities with respect to income. References Arthur Lewbel and Krishna Pendakur "Tricks with Hicks : The EASI Demand System" The American Economic Review 99(3), , Krishna Pendakur "EASI made Easier", made Easier.pdf, Examples data(hixdata) #******* Budget shares Matrix ***************** shares_hix=hixdata[,2:10] #******* price Matrix (in logarithms) *********

8 8 engel log.price_hix=hixdata[,11:19] #******* demographic matrix ******************* var.soc_hix=hixdata[,21:25] #******* logarithm of total expenditure ******* #******* (here divised by a price index) ****** log.exp_hix=hixdata[,20] #******* estimation *************************** est <- easi(shares=shares_hix,log.price=log.price_hix, var.soc=var.soc_hix,log.exp=log.exp_hix) #******* price elasticities ******************* #******* without standard deviations ********** ep1 <- elastic(est,type="price",sd=false) #******* price elasticities ******************* #******* with standard deviations ************* ep2 <- elastic(est,type="price",sd=true) #******* demographic elasticities ************* #******* without standard deviations ********** ed <- elastic(est,type="demographics",sd=false) #******* Elasticities income ****************** #******* without standard deviations ********** ei <- elastic(est,type="income",sd=false) engel Engel curves of EASI demand system Description Usage The engel function uses estimates of the easi function in order to calculate and draw the Engel curves. engel(object = object, file = file, sd = FALSE, limy = FALSE) Arguments object file sd an object of type easi which contains all the information about the previous estimation. Here, in particular, the estimates of the easi system. filename with which Engel Curves ("file.pdf") are to be stored. For example, if one specifies "file=myfile1", in the parent directory, the file "Myfile1.pdf" - which contains Engel curves - is generated. sd (for standard deviations) must be specified as TRUE if we want calculate the standard deviations (FALSE otherwise).

9 engel 9 limy the limits of the Y-axis of the graphical representations of Engel curves. For example, limy=c(0,0.5,0.2,0.5,0,1) means that the first Engel curve will be represented on a graph whose limits on the Y-axis are [0;0.5], the second Engel curve will be represented on a graph whose limits on the Y-axis are [0.2;0.5], and so on. By default, all Y-axis limits are [0;third quartile of observed budget shares]. It is also a good way to evaluate the goodness of fit. Details The equations of the Engel curves are presented in Pendakur and LewbeL. Value The matrix of fitted budget shares. References Arthur Lewbel and Krishna Pendakur "Tricks with Hicks : The EASI Demand System" The American Economic Review 99(3), , Krishna Pendakur "EASI made Easier", made Easier.pdf, Examples data(hixdata) #******* Budget shares Matrix ***************** shares_hix=hixdata[,2:10] #******* price Matrix (in logarithms) ********* log.price_hix=hixdata[,11:19] #******* demographic matrix ******************* var.soc_hix=hixdata[,21:25] #******* logarithm of total expenditure ******* #******* (here divised by a price index) ****** log.exp_hix=hixdata[,20] #******* estimation *************************** est <- easi(shares=shares_hix,log.price=log.price_hix, var.soc=var.soc_hix,log.exp=log.exp_hix) #******* engel curves ************************* eng1 <- engel(est,file="graph_engels_curves",sd=false)

10 10 equiv.income equiv.income Equivalent income of EASI demand system Description The function estimates the equivalent income under the EASI system. Two periods are considered : the reference period (before changes in prices and/or total expenditures) and the current period (after changes in prices and/or total expenditures). The function calculates the equivalent income, namely the necessary income in the reference period (with reference prices) in order to have the same implicit utility in the current period (with current prices and current total expenditures). Usage equiv.income(object = object, log.exp_ref = log.exp_ref, log.exp_cur = log.exp_cur, log.price_ref = log.price_ref, log.price_cur = log.price_cur) Arguments object log.exp_ref log.exp_cur log.price_ref log.price_cur an object of type easi which contains all the information about the previous estimation. Here, in particular, the estimates of the easi system. the logarithm of the total expenditures of the reference period. the logarithm of the total expenditures of the current period. the logarithm of the prices of the reference period. the logarithm of the prices of the current period. Details Equivalent income is derived specially in the context of easi package. Value equiv_income Equivalent Income. References Arthur Lewbel and Krishna Pendakur "Tricks with Hicks : The EASI Demand System" The American Economic Review 99(3), , Krishna Pendakur "EASI made Easier", made Easier.pdf, 2008.

11 equiv.income 11 Examples # We propose to simulate a "hybrid model" to # illustrate how to use the function: # This model is composed of five budget shares whose means are # respectively equal to 0.25, 0.15, 0.20, 0.30 and w1 <- rnorm(3000,mean=0.25,sd=0.05) w2 <- rnorm(3000,mean=0.15,sd=0.05) w3 <- rnorm(3000,mean=0.20,sd=0.05) w4 <- rnorm(3000,mean=0.30,sd=0.05) w5 <- 1-w1-w2-w3-w4 shares_sim=data.frame(w1,w2,w3,w4,w5) # We simulate five price vectors, whose means are respectively # equal to 25, 15, 20, 30 and 10: p1 <- log(rnorm(3000,mean=25,sd=3)) p2 <- log(rnorm(3000,mean=15,sd=2)) p3 <- log(rnorm(3000,mean=20,sd=3)) p4 <- log(rnorm(3000,mean=30,sd=4)) p5 <- log(rnorm(3000,mean=10,sd=1)) log.price_sim=data.frame(p1,p2,p3,p4,p5) # We simulate four demographics variable : V1, V3, V4 who # are dummy variables, and V2 who take its values in N+ V1 <- abs(round(rnorm(3000,mean=0.7,sd=0.2))) V2 <- abs(round(rnorm(3000,mean=2,sd=1)))+1 V3 <- abs(round(rnorm(3000,mean=0.7,sd=0.2))) V4 <- abs(round(rnorm(3000,mean=0.7,sd=0.2))) var.soc_sim=data.frame(v1,v2,v3,v4) # Finally, we simulate a vector of total expenditure # whose the average is log.exp_sim <- log(rnorm(3000,mean=1200,sd=200)) # Estimation est <- easi(shares=shares_sim,log.price=log.price_sim, var.soc=var.soc_sim,log.exp=log.exp_sim) ## changes in prices and total expenditure: # log.price_sim are multiplied by 1.4 between reference and current period # log.exp_sim are multiplied by 1.05 between reference and current period log.price_sim2 <- log(exp(log.price_sim)*1.4) log.exp_sim2 <- log(exp(log.exp_sim)*1.05) ## Calculation of equivalent income equiv <- equiv.income(est,log.exp_ref=log.exp_sim,log.exp_cur=log.exp_sim2,

12 12 hixdata log.price_ref=log.price_sim,log.price_cur=log.price_sim2) hixdata Hixdata Description Usage Format Data consist of 4,847 observations of rental-tenure single-member canadian households that had positive expenditures on rent, recreation, and transportation (For details see Arthur Lewbel and Krishna Pendakur "Tricks with Hicks : The EASI Demand System" The American Economic Review 99(3), , data(hixdata) A data frame with 4847 observations on the following 26 variables. obs number of observations. sfoodh the budget share of food at home. sfoodr the budget share of other foods. srent the budget share of rent. soper the budget share of household operations. sfurn the budget share of household furnishing and equipment. scloth the budget share of clothing. stranop the budget share of transportation operations. srecr the budget share of recreation. spers the budget share of personal care pfoodh the logarithm of the price of food at home. pfoodr the logarithm of the price of other foods. prent the logarithm of the price of rent. poper the logarithm of the price of household operations. pfurn the logarithm of the price of household furnishing and equipment. pcloth the logarithm of the price of clothing. ptranop the logarithm of the price of transportation operations. precr the logarithm of the price of recreations. ppers the logarithm of the price of personal care. log_y the logarithm of total expenditure. age the person s age minus 40.

13 simulations 13 Source hsex the sex dummy equal to one for men. carown a dummy equal to one if real gasoline expenditures (at 1986 gasoline prices) are less than 50 dollars. time a time variable equal to the calendar year minus tran a social assistance dummy equal to one if government transfers are greater than 10 percent of gross income. wgt weighting variable. Arthur Lewbel and Krishna Pendakur "Tricks with Hicks : The EASI Demand System" The American Economic Review 99(3), , 2009 References Arthur Lewbel and Krishna Pendakur "Tricks with Hicks : The EASI Demand System" The American Economic Review 99(3), , 2009 Examples data(hixdata) ## maybe str(hixdata) ; plot(hixdata)... simulations Simulation tools in the context of the EASI demand system Description Usage The simulations function uses estimates of the easi function in order to simulate the new fitted budget shares and the new elasticities after changes in prices, demographics and total expenditure. simulations(object = object, log.price_new = log.price_new, var.soc_new = var.soc_new, log.exp_new = log.exp_new) Arguments object log.price_new var.soc_new log.exp_new an object of type easi which contains all the information about the previous estimation. Here, in particular, the estimates of the easi system. the new price matrix (in logarithms). the new demographic variables matrix. the new total expenditures (in logarithms). Details Simulation schemes are derived in the context of the easi package.

14 14 simulations Value summary fitted.w CoefCov y shares log.price var.soc log.exp y.power neq nsoc py.inter zy.inter pz.inter interpz labels.shares labels.price labels.soc interact fit3sls varlist dim_varlist Summary of estimation. Matrix of fitted budget shares. Covariance matrix of estimates. Implicit utility. the matrix of budget shares. the matrix of prices (in logarithms). the matrix of demographic variables. the logarithm of total expenditures. the highest power of y (implicit utility) in the system. The number of goods (Excluding the last good). The number of demographic variables. a logical variable which is fixed to TRUE (FALSE otherwise) if the user wants to enable the interaction between the price variables and y (implicit utility). a logical variable which is fixed to TRUE (FALSE otherwise) if the user wants to enable the interaction between the demographic variables and y (implicit utility). a logical variable which is fixed to TRUE (FALSE otherwise) if the user wants to enable the interaction between the prices and the demographic variables. a vector which allows to choose the demographic variables to interact with the price. For example, interpz=c(3) means that price are interacted with the third demographic variable while interpz = c (1:n) means that prices are interacted with the first n demographic variables. a string which contains the names of budget shares. For example, labels.shares = c ("foods", "non foods", "others") indicates that the names of the three shares in the budget system are "foods", "non foods" and "others", respectively. a string which contains the names of log.prices. For example, labels.price = c ("pfoods", "pnonfoods", "pothers") indicates that the names of the three prices variables in the budget system are: "pfoods", "pnonfoods" and "pothers", respectively. a string which contains the names of demographic variables. For example, labels.soc = c ("age", "gender", "hsize") indicates that the names of the three demographic variables in the budget system are "age", "non foods" and "hsize", respectively. a logical variable which is fixed to TRUE if at least one of the variables in either zy.inter, py.inter or pz.inter is fixed to TRUE. object of class systemfit. list of all variables. number of variables. References Arthur Lewbel and Krishna Pendakur "Tricks with Hicks : The EASI Demand System" The American Economic Review 99(3), , Krishna Pendakur "EASI made Easier", made Easier.pdf, 2008.

15 simulations 15 Examples data(hixdata) #******* Budget shares Matrix **************** shares_hix=hixdata[,2:10] #****** price Matrix (in logarithms) ********* log.price_hix=hixdata[,11:19] #****** demographic matrix ******************* var.soc_hix=hixdata[,21:25] #****** logarithm of total expenditure ******* #****** (here divised by a price index) ****** log.exp_hix=hixdata[,20] #****** estimation *************************** est <- easi(shares=shares_hix,log.price=log.price_hix, var.soc=var.soc_hix,log.exp=log.exp_hix) #****** Changes in prices ******************** #****** PRIX.HIX --> PRIX.HIX.SIM1 = 0 ******* log.price_hix.sim1 <- log.price_hix for (i in 1:ncol(log.price_HIX)) log.price_hix.sim1[,i] <- 0 #****** Changes in demographic variables ***** #****** var.soc.hix --> var.soc.hix.sim1 = 0 * var.soc_hix.sim1 <- var.soc_hix for (i in 1:ncol(var.soc_HIX)) var.soc_hix.sim1[,i] <- 0 #******* simulation ************************** sim <- simulations(est,log.price_new=log.price_hix.sim1, var.soc_new=var.soc_hix.sim1,log.exp_new=log.exp_hix) #******* corresponding Engel curves ********** eng2 <- engel(sim,file="essai2",sd=false)

16 Index Topic EASI concavity, 2 easi, 3 elastic, 6 engel, 8 equiv.income, 10 simulations, 13 Topic Elasticities concavity, 2 elastic, 6 Topic Engel engel, 8 Topic Simulation simulations, 13 Topic datasets hixdata, 12 Topic equiv equiv.income, 10 coef.easi (easi), 3 concavity, 2 easi, 3 elastic, 6 engel, 8 equiv.income, 10 hixdata, 12 predict.easi (easi), 3 residuals.easi (easi), 3 simulations, 13 summary.easi (easi), 3 vcov.easi (easi), 3 16

Exact Affine Stone Index Demand System in R: The easi Package

Exact Affine Stone Index Demand System in R: The easi Package Exact Affine Stone Index Demand System in R: The easi Package Stéphane Hoareau Université Laval Guy Lacroix Université Laval Mirella Hoareau Université Laval Luca Tiberti Université Laval Abstract easi

More information

Asian Journal of Economic Modelling MEASUREMENT OF THE COST-OF-LIVING INDEX IN THE EASI MODEL: EVIDENCE FROM THE JAPANESE EXPENDITURE DATA

Asian Journal of Economic Modelling MEASUREMENT OF THE COST-OF-LIVING INDEX IN THE EASI MODEL: EVIDENCE FROM THE JAPANESE EXPENDITURE DATA Asian Journal of Economic Modelling ISSN(e): 2312-3656/ISSN(p): 2313-2884 URL: www.aessweb.com MEASUREMENT OF THE COST-OF-LIVING INDEX IN THE EASI MODEL: EVIDENCE FROM THE JAPANESE EXPENDITURE DATA Manami

More information

Package MSMwRA. August 7, 2018

Package MSMwRA. August 7, 2018 Type Package Package MSMwRA August 7, 2018 Title Multivariate Statistical Methods with R Applications Version 1.3 Date 2018-07-17 Author Hasan BULUT Maintainer Hasan BULUT Data

More information

Estimation of consumption choices with the EASI demand system: Application to Italian data

Estimation of consumption choices with the EASI demand system: Application to Italian data Estimation of consumption choices with the EASI demand system: Application to Italian data Arianna Olivieri * Prometeia Associazione per le Previsioni Econometriche, Bologna This version: 30 August 2014

More information

Package XNomial. December 24, 2015

Package XNomial. December 24, 2015 Type Package Package XNomial December 24, 2015 Title Exact Goodness-of-Fit Test for Multinomial Data with Fixed Probabilities Version 1.0.4 Date 2015-12-22 Author Bill Engels Maintainer

More information

Package semsfa. April 21, 2018

Package semsfa. April 21, 2018 Type Package Package semsfa April 21, 2018 Title Semiparametric Estimation of Stochastic Frontier Models Version 1.1 Date 2018-04-18 Author Giancarlo Ferrara and Francesco Vidoli Maintainer Giancarlo Ferrara

More information

Package bunchr. January 30, 2017

Package bunchr. January 30, 2017 Type Package Package bunchr January 30, 2017 Title Analyze Bunching in a Kink or Notch Setting Version 1.2.0 Maintainer Itai Trilnick View and analyze data where bunching is

More information

An empirical analysis of disability and household expenditure allocations

An empirical analysis of disability and household expenditure allocations An empirical analysis of disability and household expenditure allocations Hong il Yoo School of Economics University of New South Wales Introduction Disability may influence household expenditure allocations

More information

Package gmediation. R topics documented: June 27, Type Package

Package gmediation. R topics documented: June 27, Type Package Type Package Package gmediation June 27, 2017 Title Mediation Analysis for Multiple and Multi-Stage Mediators Version 0.1.1 Author Jang Ik Cho, Jeffrey Albert Maintainer Jang Ik Cho Description

More information

Package RcmdrPlugin.RiskDemo

Package RcmdrPlugin.RiskDemo Type Package Package RcmdrPlugin.RiskDemo October 3, 2018 Title R Commander Plug-in for Risk Demonstration Version 2.0 Date 2018-10-3 Author Arto Luoma Maintainer R Commander plug-in to demonstrate various

More information

Package EMT. February 19, 2015

Package EMT. February 19, 2015 Type Package Package EMT February 19, 2015 Title Exact Multinomial Test: Goodness-of-Fit Test for Discrete Multivariate data Version 1.1 Date 2013-01-27 Author Uwe Menzel Maintainer Uwe Menzel

More information

Package tailloss. August 29, 2016

Package tailloss. August 29, 2016 Package tailloss August 29, 2016 Title Estimate the Probability in the Upper Tail of the Aggregate Loss Distribution Set of tools to estimate the probability in the upper tail of the aggregate loss distribution

More information

Package stable. February 6, 2017

Package stable. February 6, 2017 Version 1.1.2 Package stable February 6, 2017 Title Probability Functions and Generalized Regression Models for Stable Distributions Depends R (>= 1.4), rmutil Description Density, distribution, quantile

More information

Package PortRisk. R topics documented: November 1, Type Package Title Portfolio Risk Analysis Version Date

Package PortRisk. R topics documented: November 1, Type Package Title Portfolio Risk Analysis Version Date Type Package Title Portfolio Risk Analysis Version 1.1.0 Date 2015-10-31 Package PortRisk November 1, 2015 Risk Attribution of a portfolio with Volatility Risk Analysis. License GPL-2 GPL-3 Depends R (>=

More information

Package SimCorMultRes

Package SimCorMultRes Package SimCorMultRes February 15, 2013 Type Package Title Simulates Correlated Multinomial Responses Version 1.0 Date 2012-11-12 Author Anestis Touloumis Maintainer Anestis Touloumis

More information

Package LNIRT. R topics documented: November 14, 2018

Package LNIRT. R topics documented: November 14, 2018 Package LNIRT November 14, 2018 Type Package Title LogNormal Response Time Item Response Theory Models Version 0.3.5 Author Jean-Paul Fox, Konrad Klotzke, Rinke Klein Entink Maintainer Konrad Klotzke

More information

Household Budget Share Distribution and Welfare Implication: An Application of Multivariate Distributional Statistics

Household Budget Share Distribution and Welfare Implication: An Application of Multivariate Distributional Statistics Household Budget Share Distribution and Welfare Implication: An Application of Multivariate Distributional Statistics Manisha Chakrabarty 1 and Amita Majumder 2 Abstract In this paper the consequence of

More information

Online Robustness Appendix to Are Household Surveys Like Tax Forms: Evidence from the Self Employed

Online Robustness Appendix to Are Household Surveys Like Tax Forms: Evidence from the Self Employed Online Robustness Appendix to Are Household Surveys Like Tax Forms: Evidence from the Self Employed March 01 Erik Hurst University of Chicago Geng Li Board of Governors of the Federal Reserve System Benjamin

More information

Revisiting the cost of children: theory and evidence from Ireland

Revisiting the cost of children: theory and evidence from Ireland : theory and evidence from Ireland Olivier Bargain (UCD) Olivier Bargain (UCD) () CPA - 3rd March 2009 1 / 28 Introduction Motivation Goal is to infer sharing of resources in households using economic

More information

Package GenOrd. September 12, 2015

Package GenOrd. September 12, 2015 Package GenOrd September 12, 2015 Type Package Title Simulation of Discrete Random Variables with Given Correlation Matrix and Marginal Distributions Version 1.4.0 Date 2015-09-11 Author Alessandro Barbiero,

More information

Package uqr. April 18, 2017

Package uqr. April 18, 2017 Type Package Title Unconditional Quantile Regression Version 1.0.0 Date 2017-04-18 Package uqr April 18, 2017 Author Stefano Nembrini Maintainer Stefano Nembrini

More information

UNIT 16 BREAK EVEN ANALYSIS

UNIT 16 BREAK EVEN ANALYSIS UNIT 16 BREAK EVEN ANALYSIS Structure 16.0 Objectives 16.1 Introduction 16.2 Break Even Analysis 16.3 Break Even Point 16.4 Impact of Changes in Sales Price, Volume, Variable Costs and on Profits 16.5

More information

Package cbinom. June 10, 2018

Package cbinom. June 10, 2018 Package cbinom June 10, 2018 Type Package Title Continuous Analog of a Binomial Distribution Version 1.1 Date 2018-06-09 Author Dan Dalthorp Maintainer Dan Dalthorp Description Implementation

More information

Package Strategy. R topics documented: August 24, Type Package

Package Strategy. R topics documented: August 24, Type Package Type Package Package Strategy August 24, 2017 Title Generic Framework to Analyze Trading Strategies Version 1.0.1 Date 2017-08-21 Author Julian Busch Maintainer Julian Busch Depends R (>=

More information

Package dng. November 22, 2017

Package dng. November 22, 2017 Version 0.1.1 Date 2017-11-22 Title Distributions and Gradients Type Package Author Feng Li, Jiayue Zeng Maintainer Jiayue Zeng Depends R (>= 3.0.0) Package dng November 22, 2017 Provides

More information

Characterization of the Optimum

Characterization of the Optimum ECO 317 Economics of Uncertainty Fall Term 2009 Notes for lectures 5. Portfolio Allocation with One Riskless, One Risky Asset Characterization of the Optimum Consider a risk-averse, expected-utility-maximizing

More information

Package QRank. January 12, 2017

Package QRank. January 12, 2017 Type Package Package QRank January 12, 2017 Title A Novel Quantile Regression Approach for eqtl Discovery Version 1.0 Date 2016-12-25 Author Xiaoyu Song Maintainer Xiaoyu Song

More information

1 We would like to thank two anonymous referees for thoughtful and useful feedback. In addition, we thank our friends and

1 We would like to thank two anonymous referees for thoughtful and useful feedback. In addition, we thank our friends and Imputing Rent in Consumption Measures, With an Application to Consumption Poverty in Canada 1997-2009 Sam B. Norris and Krishna Pendakur 1 University of Toronto and Simon Fraser University Abstract We

More information

Package optimstrat. September 10, 2018

Package optimstrat. September 10, 2018 Type Package Title Choosing the Sample Strategy Version 1.1 Date 2018-09-04 Package optimstrat September 10, 2018 Author Edgar Bueno Maintainer Edgar Bueno

More information

The Effects of Increasing the Early Retirement Age on Social Security Claims and Job Exits

The Effects of Increasing the Early Retirement Age on Social Security Claims and Job Exits The Effects of Increasing the Early Retirement Age on Social Security Claims and Job Exits Day Manoli UCLA Andrea Weber University of Mannheim February 29, 2012 Abstract This paper presents empirical evidence

More information

Package scenario. February 17, 2016

Package scenario. February 17, 2016 Type Package Package scenario February 17, 2016 Title Construct Reduced Trees with Predefined Nodal Structures Version 1.0 Date 2016-02-15 URL https://github.com/swd-turner/scenario Uses the neural gas

More information

Package multiassetoptions

Package multiassetoptions Package multiassetoptions February 20, 2015 Type Package Title Finite Difference Method for Multi-Asset Option Valuation Version 0.1-1 Date 2015-01-31 Author Maintainer Michael Eichenberger

More information

Non-linearities in Simple Regression

Non-linearities in Simple Regression Non-linearities in Simple Regression 1. Eample: Monthly Earnings and Years of Education In this tutorial, we will focus on an eample that eplores the relationship between total monthly earnings and years

More information

Chapter 6. y y. Standardizing with z-scores. Standardizing with z-scores (cont.)

Chapter 6. y y. Standardizing with z-scores. Standardizing with z-scores (cont.) Starter Ch. 6: A z-score Analysis Starter Ch. 6 Your Statistics teacher has announced that the lower of your two tests will be dropped. You got a 90 on test 1 and an 85 on test 2. You re all set to drop

More information

Package mle.tools. February 21, 2017

Package mle.tools. February 21, 2017 Type Package Package mle.tools February 21, 2017 Title Expected/Observed Fisher Information and Bias-Corrected Maximum Likelihood Estimate(s) Version 1.0.0 License GPL (>= 2) Date 2017-02-21 Author Josmar

More information

Package finiteruinprob

Package finiteruinprob Type Package Package finiteruinprob December 30, 2016 Title Computation of the Probability of Ruin Within a Finite Time Horizon Version 0.6 Date 2016-12-30 Maintainer Benjamin Baumgartner

More information

Lesson Exponential Models & Logarithms

Lesson Exponential Models & Logarithms SACWAY STUDENT HANDOUT SACWAY BRAINSTORMING ALGEBRA & STATISTICS STUDENT NAME DATE INTRODUCTION Compound Interest When you invest money in a fixed- rate interest earning account, you receive interest at

More information

Package smam. October 1, 2016

Package smam. October 1, 2016 Type Package Title Statistical Modeling of Animal Movements Version 0.3-0 Date 2016-09-02 Package smam October 1, 2016 Author Jun Yan and Vladimir Pozdnyakov

More information

Package PairTrading. February 15, 2013

Package PairTrading. February 15, 2013 Package PairTrading February 15, 2013 Type Package Title classical pair trading based on cointegration in finance Version 1.1 Date 2012-03-24 Author Maintainer Shinichi Takayanagi

More information

Package GCPM. December 30, 2016

Package GCPM. December 30, 2016 Type Package Title Generalized Credit Portfolio Model Version 1.2.2 Date 2016-12-29 Author Kevin Jakob Package GCPM December 30, 2016 Maintainer Kevin Jakob Analyze the

More information

Package ensemblemos. March 22, 2018

Package ensemblemos. March 22, 2018 Type Package Title Ensemble Model Output Statistics Version 0.8.2 Date 2018-03-21 Package ensemblemos March 22, 2018 Author RA Yuen, Sandor Baran, Chris Fraley, Tilmann Gneiting, Sebastian Lerch, Michael

More information

Household food purchasing behaviour

Household food purchasing behaviour Household food purchasing behaviour Incomes, Prices and Nutrition Rachel Griffith, Martin O Connell and Kate Smith IFS March 2012 Griffith, O Connell and Smith (IFS) Resource allocation within households

More information

Package rpms. May 5, 2018

Package rpms. May 5, 2018 Type Package Package rpms May 5, 2018 Title Recursive Partitioning for Modeling Survey Data Version 0.3.0 Date 2018-04-20 Maintainer Daniell Toth Fits a linear model to survey data

More information

Estimation, Analysis and Projection of India s GDP

Estimation, Analysis and Projection of India s GDP MPRA Munich Personal RePEc Archive Estimation, Analysis and Projection of India s GDP Ugam Raj Daga and Rituparna Das and Bhishma Maheshwari 2004 Online at https://mpra.ub.uni-muenchen.de/22830/ MPRA Paper

More information

Package ratesci. April 21, 2017

Package ratesci. April 21, 2017 Type Package Package ratesci April 21, 2017 Title Confidence Intervals for Comparisons of Binomial or Poisson Rates Version 0.2-0 Date 2017-04-21 Author Pete Laud [aut, cre] Maintainer Pete Laud

More information

ONLINE APPENDIX (NOT FOR PUBLICATION) Appendix A: Appendix Figures and Tables

ONLINE APPENDIX (NOT FOR PUBLICATION) Appendix A: Appendix Figures and Tables ONLINE APPENDIX (NOT FOR PUBLICATION) Appendix A: Appendix Figures and Tables 34 Figure A.1: First Page of the Standard Layout 35 Figure A.2: Second Page of the Credit Card Statement 36 Figure A.3: First

More information

Package ELMSO. September 3, 2018

Package ELMSO. September 3, 2018 Type Package Package ELMSO September 3, 2018 Title Implementation of the Efficient Large-Scale Online Display Advertising Algorithm Version 1.0.0 Date 2018-8-31 Maintainer Courtney Paulson

More information

Package SMFI5. February 19, 2015

Package SMFI5. February 19, 2015 Type Package Package SMFI5 February 19, 2015 Title R functions and data from Chapter 5 of 'Statistical Methods for Financial Engineering' Version 1.0 Date 2013-05-16 Author Maintainer

More information

Information Share, or, measuring the importance of different markets

Information Share, or, measuring the importance of different markets Information Share, or, measuring the importance of different markets The Information Share concerns ways of measuing which market place is most important in price discovery. It is attributed to?. It is

More information

EQUIVALENCE SCALES Entry for The New Palgrave Dictionary of Economics, 2nd edition

EQUIVALENCE SCALES Entry for The New Palgrave Dictionary of Economics, 2nd edition EQUIVALENCE SCALES Entry for The New Palgrave Dictionary of Economics, 2nd edition Arthur Lewbel and Krishna Pendakur Boston College and Simon Fraser University Dec. 2006 Abstract An equivalence scale

More information

MBA 7020 Sample Final Exam

MBA 7020 Sample Final Exam Descriptive Measures, Confidence Intervals MBA 7020 Sample Final Exam Given the following sample of weight measurements (in pounds) of 25 children aged 4, answer the following questions(1 through 3): 45,

More information

Is power more evenly balanced in poor households?

Is power more evenly balanced in poor households? ZEW, 11th September 2008 Is power more evenly balanced in poor households? Hélène Couprie Toulouse School of Economics (GREMAQ) with Eugenio Peluso University of Verona and Alain Trannoy IDEP-GREQAM, University

More information

Package beanz. June 13, 2018

Package beanz. June 13, 2018 Package beanz June 13, 2018 Title Bayesian Analysis of Heterogeneous Treatment Effect Version 2.3 Author Chenguang Wang [aut, cre], Ravi Varadhan [aut], Trustees of Columbia University [cph] (tools/make_cpp.r,

More information

Influence of Personal Factors on Health Insurance Purchase Decision

Influence of Personal Factors on Health Insurance Purchase Decision Influence of Personal Factors on Health Insurance Purchase Decision INFLUENCE OF PERSONAL FACTORS ON HEALTH INSURANCE PURCHASE DECISION The decision in health insurance purchase include decisions about

More information

Intro to GLM Day 2: GLM and Maximum Likelihood

Intro to GLM Day 2: GLM and Maximum Likelihood Intro to GLM Day 2: GLM and Maximum Likelihood Federico Vegetti Central European University ECPR Summer School in Methods and Techniques 1 / 32 Generalized Linear Modeling 3 steps of GLM 1. Specify the

More information

Package eesim. June 3, 2017

Package eesim. June 3, 2017 Type Package Package eesim June 3, 2017 Title Simulate and Evaluate Time Series for Environmental Epidemiology Version 0.1.0 Date 2017-06-02 Provides functions to create simulated time series of environmental

More information

BOSTON UNIVERSITY SCHOOL OF MANAGEMENT. Math Notes

BOSTON UNIVERSITY SCHOOL OF MANAGEMENT. Math Notes BOSTON UNIVERSITY SCHOOL OF MANAGEMENT Math Notes BU Note # 222-1 This note was prepared by Professor Michael Salinger and revised by Professor Shulamit Kahn. 1 I. Introduction This note discusses the

More information

Equivalence Scales Based on Collective Household Models

Equivalence Scales Based on Collective Household Models Equivalence Scales Based on Collective Household Models Arthur Lewbel Boston College December 2002 Abstract Based on Lewbel, Chiappori and Browning (2002), this paper summarizes how the use of collective

More information

Do firms benefit from quality-related training activities?

Do firms benefit from quality-related training activities? Do firms benefit from quality-related training activities? Geneva Trade and Development Workshop Geneva, 13 November 2018 Presenter: Jasmeer Virdee Co-authors: Antonina Popova & Valentina Rollo 2 Research

More information

WORKING PAPER SERIES 8

WORKING PAPER SERIES 8 WORKING PAPER SERIES 8 Kamil Dybczak, Peter Tóth and David Voňka: Effects of Price Shocks to Consumer Demand. Estimating the QUAIDS Demand System on Czech Household Budget Survey Data 2 010 WORKING PAPER

More information

Modelling the Sharpe ratio for investment strategies

Modelling the Sharpe ratio for investment strategies Modelling the Sharpe ratio for investment strategies Group 6 Sako Arts 0776148 Rik Coenders 0777004 Stefan Luijten 0783116 Ivo van Heck 0775551 Rik Hagelaars 0789883 Stephan van Driel 0858182 Ellen Cardinaels

More information

Economic Well-Being and Poverty among the Elderly: An Analysis Based on a Collective Consumption Model

Economic Well-Being and Poverty among the Elderly: An Analysis Based on a Collective Consumption Model DISCUSSION PAPER SERIES IZA DP No. 3349 Economic Well-Being and Poverty among the Elderly: An Analysis Based on a Collective Consumption Model Laurens Cherchye Bram De Rock Frederic Vermeulen February

More information

Linear Modeling Business 5 Supply and Demand

Linear Modeling Business 5 Supply and Demand Linear Modeling Business 5 Supply and Demand Supply and demand is a fundamental concept in business. Demand looks at the Quantity (Q) of a product that will be sold with respect to the Price (P) the product

More information

Introducing nominal rigidities. A static model.

Introducing nominal rigidities. A static model. Introducing nominal rigidities. A static model. Olivier Blanchard May 25 14.452. Spring 25. Topic 7. 1 Why introduce nominal rigidities, and what do they imply? An informal walk-through. In the model we

More information

You created this PDF from an application that is not licensed to print to novapdf printer (http://www.novapdf.com)

You created this PDF from an application that is not licensed to print to novapdf printer (http://www.novapdf.com) Monday October 3 10:11:57 2011 Page 1 (R) / / / / / / / / / / / / Statistics/Data Analysis Education Box and save these files in a local folder. name:

More information

Labor Economics Field Exam Spring 2011

Labor Economics Field Exam Spring 2011 Labor Economics Field Exam Spring 2011 Instructions You have 4 hours to complete this exam. This is a closed book examination. No written materials are allowed. You can use a calculator. THE EXAM IS COMPOSED

More information

Unit 5: Study Guide Multilevel models for macro and micro data MIMAS The University of Manchester

Unit 5: Study Guide Multilevel models for macro and micro data MIMAS The University of Manchester Unit 5: Study Guide Multilevel models for macro and micro data MIMAS The University of Manchester 5.1 Introduction 5.2 Learning objectives 5.3 Single level models 5.4 Multilevel models 5.5 Theoretical

More information

Alan A. Powell Keith R. McLaren Ken R. Pearson Maureen T. Rimmer

Alan A. Powell Keith R. McLaren Ken R. Pearson Maureen T. Rimmer Cobb-Douglas Douglas-Eventually! Alan A. Powell Keith R. McLaren Ken R. Pearson Maureen T. Rimmer Monash University TOPICS COVERED IN PAPER historical review of directly additive preferences (LES) Engel

More information

Package rtip. R topics documented: April 12, Type Package

Package rtip. R topics documented: April 12, Type Package Type Package Package rtip April 12, 2018 Title Inequality, Welfare and Poverty Indices and Curves using the EU-SILC Data Version 1.1.1 Date 2018-04-12 Maintainer Angel Berihuete

More information

Demand and Supply for Residential Housing in Urban China. Gregory C Chow Princeton University. Linlin Niu WISE, Xiamen University.

Demand and Supply for Residential Housing in Urban China. Gregory C Chow Princeton University. Linlin Niu WISE, Xiamen University. Demand and Supply for Residential Housing in Urban China Gregory C Chow Princeton University Linlin Niu WISE, Xiamen University. August 2009 1. Introduction Ever since residential housing in urban China

More information

Continuous random variables

Continuous random variables Continuous random variables probability density function (f(x)) the probability distribution function of a continuous random variable (analogous to the probability mass function for a discrete random variable),

More information

Package ph2mult. November 23, 2016

Package ph2mult. November 23, 2016 Type Package Package ph2mult November 23, 2016 Title Phase II Clinical Trial Design for Multinomial Endpoints Version 0.1.1 Author Yalin Zhu, Rui Qin Maintainer Yalin Zhu Description

More information

Housing Supply Elasticity and Rent Extraction by State and Local Governments Rebecca Diamond Online Appendix

Housing Supply Elasticity and Rent Extraction by State and Local Governments Rebecca Diamond Online Appendix Housing Supply Elasticity and Rent Extraction by State and Local Governments Rebecca Diamond Online Appendix A Government Taxation under Income and Property Taxes In all the cases below I do not model

More information

Firm s demand for the input. Supply of the input = price of the input.

Firm s demand for the input. Supply of the input = price of the input. Chapter 8 Costs Functions The economic cost of an input is the minimum payment required to keep the input in its present employment. It is the payment the input would receive in its best alternative employment.

More information

Package YieldCurve. July 2, 2014

Package YieldCurve. July 2, 2014 Package YieldCurve July 2, 2014 Type Package Title Modelling and estimation of the yield curve Version 4.1 Date 2013-01-19 Depends R (>= 2.10, xts Author Sergio Salvino Guirreri Maintainer Sergio Salvino

More information

The Lmoments Package

The Lmoments Package The Lmoments Package April 12, 2006 Version 1.1-1 Date 2006-04-10 Title L-moments and quantile mixtures Author Juha Karvanen Maintainer Juha Karvanen Depends R Suggests lmomco The

More information

Package ald. February 1, 2018

Package ald. February 1, 2018 Type Package Title The Asymmetric Laplace Distribution Version 1.2 Date 2018-01-31 Package ald February 1, 2018 Author Christian E. Galarza and Victor H. Lachos

More information

Studying Sample Sizes for demand analysis Analysis on the size of calibration and hold-out sample for choice model appraisal

Studying Sample Sizes for demand analysis Analysis on the size of calibration and hold-out sample for choice model appraisal Studying Sample Sizes for demand analysis Analysis on the size of calibration and hold-out sample for choice model appraisal Mathew Olde Klieverik 26-9-2007 2007 Studying Sample Sizes for demand analysis

More information

Package FADA. May 20, 2016

Package FADA. May 20, 2016 Type Package Package FADA May 20, 2016 Title Variable Selection for Supervised Classification in High Dimension Version 1.3.2 Date 2016-05-12 Author Emeline Perthame (INRIA, Grenoble, France), Chloe Friguet

More information

How (not) to measure Competition

How (not) to measure Competition How (not) to measure Competition Jan Boone, Jan van Ours and Henry van der Wiel CentER, Tilburg University 1 Introduction Conventional ways of measuring competition (concentration (H) and price cost margin

More information

Taxation and Efficiency : (a) : The Expenditure Function

Taxation and Efficiency : (a) : The Expenditure Function Taxation and Efficiency : (a) : The Expenditure Function The expenditure function is a mathematical tool used to analyze the cost of living of a consumer. This function indicates how much it costs in dollars

More information

Problem Set II: budget set, convexity

Problem Set II: budget set, convexity Problem Set II: budget set, convexity Paolo Crosetto paolo.crosetto@unimi.it Exercises ill be solved in class on January 25th, 2010 Recap: Walrasian Budget set, definition Definition 1 (Walrasian budget

More information

Suggested Solutions to Assignment 3

Suggested Solutions to Assignment 3 ECON 1010C Principles of Macroeconomics Instructor: Sharif F. Khan Department of Economics Atkinson College York University Summer 2005 Suggested Solutions to Assignment 3 Part A Multiple-Choice Questions

More information

The Mundell Fleming Model. The Mundell Fleming Model is a simple open economy version of the IS LM model.

The Mundell Fleming Model. The Mundell Fleming Model is a simple open economy version of the IS LM model. International Finance Lecture 4 Autumn 2011 The Mundell Fleming Model The Mundell Fleming Model is a simple open economy version of the IS LM model. I. The Model A. The goods market Goods market equilibrium

More information

ANALYTICAL TOOLS. Module 034. Equivalence Scales. Objective Methods

ANALYTICAL TOOLS. Module 034. Equivalence Scales. Objective Methods ANALYTICAL TOOLS Module 034 Equivalence Scales by Lorenzo Giovanni Bellù, Agricultural Policy Support Service, Policy Assistance Division, FAO, Rome, Italy Paolo Liberati, University of Urbino, "Carlo

More information

ESTIMATION OF MODIFIED MEASURE OF SKEWNESS. Elsayed Ali Habib *

ESTIMATION OF MODIFIED MEASURE OF SKEWNESS. Elsayed Ali Habib * Electronic Journal of Applied Statistical Analysis EJASA, Electron. J. App. Stat. Anal. (2011), Vol. 4, Issue 1, 56 70 e-issn 2070-5948, DOI 10.1285/i20705948v4n1p56 2008 Università del Salento http://siba-ese.unile.it/index.php/ejasa/index

More information

International Trade in Resource Goods and Returns to Labor in the Non-Resource Sectors

International Trade in Resource Goods and Returns to Labor in the Non-Resource Sectors IIFET 2000 roceedings International Trade in Resource Goods and Returns to Labor in the Non-Resource Sectors Ali Emami Departments of Finance and Economics University of Oregon USA Richard S. ohnston Department

More information

Econ 8602, Fall 2017 Homework 2

Econ 8602, Fall 2017 Homework 2 Econ 8602, Fall 2017 Homework 2 Due Tues Oct 3. Question 1 Consider the following model of entry. There are two firms. There are two entry scenarios in each period. With probability only one firm is able

More information

The Impact of a $15 Minimum Wage on Hunger in America

The Impact of a $15 Minimum Wage on Hunger in America The Impact of a $15 Minimum Wage on Hunger in America Appendix A: Theoretical Model SEPTEMBER 1, 2016 WILLIAM M. RODGERS III Since I only observe the outcome of whether the household nutritional level

More information

Approximate Variance-Stabilizing Transformations for Gene-Expression Microarray Data

Approximate Variance-Stabilizing Transformations for Gene-Expression Microarray Data Approximate Variance-Stabilizing Transformations for Gene-Expression Microarray Data David M. Rocke Department of Applied Science University of California, Davis Davis, CA 95616 dmrocke@ucdavis.edu Blythe

More information

Homework 1 Due February 10, 2009 Chapters 1-4, and 18-24

Homework 1 Due February 10, 2009 Chapters 1-4, and 18-24 Homework Due February 0, 2009 Chapters -4, and 8-24 Make sure your graphs are scaled and labeled correctly. Note important points on the graphs and label them. Also be sure to label the axis on all of

More information

Foundational Preliminaries: Answers to Within-Chapter-Exercises

Foundational Preliminaries: Answers to Within-Chapter-Exercises C H A P T E R 0 Foundational Preliminaries: Answers to Within-Chapter-Exercises 0A Answers for Section A: Graphical Preliminaries Exercise 0A.1 Consider the set [0,1) which includes the point 0, all the

More information

1 Payroll Tax Legislation 2. 2 Severance Payments Legislation 3

1 Payroll Tax Legislation 2. 2 Severance Payments Legislation 3 Web Appendix Contents 1 Payroll Tax Legislation 2 2 Severance Payments Legislation 3 3 Difference-in-Difference Results 5 3.1 Senior Workers, 1997 Change............................... 5 3.2 Young Workers,

More information

Both the quizzes and exams are closed book. However, For quizzes: Formulas will be provided with quiz papers if there is any need.

Both the quizzes and exams are closed book. However, For quizzes: Formulas will be provided with quiz papers if there is any need. Both the quizzes and exams are closed book. However, For quizzes: Formulas will be provided with quiz papers if there is any need. For exams (MD1, MD2, and Final): You may bring one 8.5 by 11 sheet of

More information

1. The Armenian Integrated Living Conditions Survey

1. The Armenian Integrated Living Conditions Survey MEASURING POVERTY IN ARMENIA: METHODOLOGICAL EXPLANATIONS Since 1996, when the current methodology for surveying well being of households was introduced in Armenia, the National Statistical Service of

More information

Labor Market Effects of the Early Retirement Age

Labor Market Effects of the Early Retirement Age Labor Market Effects of the Early Retirement Age Day Manoli UT Austin & NBER Andrea Weber University of Mannheim & IZA September 30, 2012 Abstract This paper presents empirical evidence on the effects

More information

Kostas Kyriakoulis ECG 790: Topics in Advanced Econometrics Fall Matlab Handout # 5. Two step and iterative GMM Estimation

Kostas Kyriakoulis ECG 790: Topics in Advanced Econometrics Fall Matlab Handout # 5. Two step and iterative GMM Estimation Kostas Kyriakoulis ECG 790: Topics in Advanced Econometrics Fall 2004 Matlab Handout # 5 Two step and iterative GMM Estimation The purpose of this handout is to describe the computation of the two-step

More information

Web Appendix for: Medicare Part D: Are Insurers Gaming the Low Income Subsidy Design? Francesco Decarolis (Boston University)

Web Appendix for: Medicare Part D: Are Insurers Gaming the Low Income Subsidy Design? Francesco Decarolis (Boston University) Web Appendix for: Medicare Part D: Are Insurers Gaming the Low Income Subsidy Design? 1) Data Francesco Decarolis (Boston University) The dataset was assembled from data made publicly available by CMS

More information

A. B. C. D. Graphing Quadratics Practice Quiz. Question 1. Select the graph of the quadratic function. f (x ) = 2x 2. 2/26/2018 Print Assignment

A. B. C. D. Graphing Quadratics Practice Quiz. Question 1. Select the graph of the quadratic function. f (x ) = 2x 2. 2/26/2018 Print Assignment Question 1. Select the graph of the quadratic function. f (x ) = 2x 2 C. D. https://my.hrw.com/wwtb2/viewer/printall_vs23.html?umk5tfdnj31tcldd29v4nnzkclztk3w8q6wgvr2629ca0a5fsymn1tfv8j1vs4qotwclvofjr8uon4cldd29v4

More information

A NUTRITIONAL GOODS AND A COMPLETE CONSUMER DEMAND SYSTEM ESTIMATION FOR SOUTH AFRICA USING ACTUAL PRICE DATA

A NUTRITIONAL GOODS AND A COMPLETE CONSUMER DEMAND SYSTEM ESTIMATION FOR SOUTH AFRICA USING ACTUAL PRICE DATA SAJEMS NS 19 (016) No 4:615-69 615 A NUTRITIONAL GOODS AND A COMPLETE CONSUMER DEMAND SYSTEM ESTIMATION FOR SOUTH AFRICA USING ACTUAL PRICE DATA Marius Louis van Oordt African Tax Institute, University

More information