Unit 7 Analysis of Variance Practice Problems - 1 of 2 SOLUTIONS Stata

Size: px
Start display at page:

Download "Unit 7 Analysis of Variance Practice Problems - 1 of 2 SOLUTIONS Stata"

Transcription

1 Unt 7 Analyss of Varance Practce Problems - 1 of 2 SOLUTIONS Stata Before you begn: Download from the course webste: Stata Users anova_nfants.dta fshgrowth.dta Practce wth one way analyss of varance Exercses #1-6 Data set: anova_nfants.dta Zelazo et al. (1972) nvestgated the varablty n age at frst walkng n nfants. Study nfants were grouped nto four groups, accordng to renforcement of walkng and placement: (1) actve (2) passve (3) no exercse; and (4) 8 week control. Sample szes were 6 per group, for a total of n=24. For each nfant, study data ncluded group assgnment and age at frst walkng, n months. The followng are the data and consst of recorded values of age (months) by group: Actve Group Passve Group No-Exercse Group 8 Week Control Source: Zelazo et al (1972) Walkng n the newborn. Scence 176: Sol_anova_1 of 2 STATA.docx Page 1 of 13

2 2 1. State the analyss of varance model usng notaton µ and τ and σ as approprate. Defne all terms and constrants on the parameters Answer: 4 2 Y = µ + τ + ε, where ε ~N(0,σ ) and τ=0 å j j j e = 1, 2,... K ndexes method of renforcement group; K = number of groups = 4 j=1, 2,..., n =6 ndexes nfant wthn group; µ = populaton mean age at frst walkng, over all groups µ = mean age at frst walkng for nfants n group "" τ = [ µ - µ ] Y = observed age at frst walkng for the jth nfant n group "" j H: t =0, t =0, t =0, and t =0 O H : At least one t ¹ 0 A =1 2. By any means you lke, produce a sde by sde box plot showng the dstrbuton of age at frst walkng, separately for each of the 4 groups.. sort group. tabstat age, by(group) stat(n mean sd sem mn q max) Summary for varables: age by categores of: group group N mean sd se(mean) mn p25 p50 p75 max Total In these data, frst walkng occurs earler when nfants are renforced - Dstrbutons dffer markedly wth respect to varablty wth greatest seen among nfants n the passve group and smallest among nfants n the control group Sol_anova_1 of 2 STATA.docx Page 2 of 13

3 - Dstrbutons also dffer markedly n ther patterns of symmetry wth long rght tals n the actve and passve groups, long left tal n the no-exercse group, and symmetry n controls. set scheme s1color. label defne groupf 1 "Actve" 2 "Passve" 3 "No exercse" 4 "Control". label values group groupf. * No frlls graph. graph box age, over(group). * Same graph wth added aesthetcs.. graph box age, over(group, descendng) ntensty(50) box(1, bcolor(dknavy)) marker(1, msymbol(d) msze(medum) mcolor(dknavy)) ylabel(8(2)16, labsze(small)) yttle("month") ttle("age (months) at Frst Walkng, n=24") subttle("by Method of Renforcement") capton("exercse2.png", sze(vsmall)) NO Frlls Wth Aesthetcs Ex2_nofrlls.png exercse2.png - Plot confrms mpressons from the descrptve statstcs. Sol_anova_1 of 2 STATA.docx Page 3 of 13

4 3. By any means you lke, obtan the entres of the analyss of varance table for ths one way analyss of varance. Use your computer output (or excel work or hand calculatons or whatever) to complete the followng table: Sum of Squares SSQ Mean Square MSQ F-Statstc p-value Source df Between Groups Wthn Groups Total, corrected oneway age group, tabulate Summary of age group Mean Std. Dev. Freq Total Analyss of Varance Source SS df MS F Prob > F Between groups Wthn groups Total Bartlett's test for equal varances: ch2(3) = Prob>ch2 = Sol_anova_1 of 2 STATA.docx Page 4 of 13

5 4. Wrte a 2-5 sentence report of your descrpton and hypothess test fndngs usng language as approprate for a clent who s ntellgent but s not knowledgeable about statstcs. Include fgure and table as you thnk s approprate. In ths sample, the data suggest a trend towards earler age at frst walkng wth ncreasng renforcement and placement. The medan age at frst walkng s greatest among controls (12.35 months) and lowest among nfants n the actve group (10.13 months); see also the box plots. Tests of statstcal sgnfcance were lmted to the overall F test for group dfferences and ths dd not acheve statstcal sgnfcance (p-value =.10), possbly due to the small sample szes (6 n each group). Interestngly, examnaton of the data also suggests that the varablty n age at frst walkng dffered, dependng on the nterventon receved. The varablty was greater n the three nterventon groups ( actve, passve, no exercse ) compared to n the control group; ths was not statstcally sgnfcant however (p-value =.45). Further study, utlzng larger sample szes and addtonal hypothess tests to nvestgate trend are needed. 5. For the brave Usng approprately defned ndcator varables, perform a multvarable lnear regresson analyss of these same data! Use your computer output to complete the followng table: Source df Sum of Squares Mean Square Overall F due model (p) = 3 n SSR = Yˆ -Y = SSR/p = due error (resdual) (n-1-p) = 20 Total, corrected (n-1) = 23 å = 1 n å = 1 n ( ) 2 ( ˆ ) 2 SSE = Y -Y å( ) 2 SST = Y -Y = 1 = SSE/(n-1-p) =2.18 = Some of ths has already been done for you: I consdered the followng parameterzaton Y = age at frst walkng I_act = 0/1 ndcator of group assgnment to actve I_pass = 0/1 ndcator of group assgnment to passve I_noex = 0/1 ndcator of group assgnment to no exercse Thus, I used a reference cell codng approach wth 8 week control as my reference. I ft the followng multvarable lnear model of Y Y = b 0 + b 1 [I_act] + b 2 [I_pass] + b 3 [I_noex] + error Sol_anova_1 of 2 STATA.docx Page 5 of 13

6 . * I have already done ths. You do NOT need to reproduce these varable creatons.. generate I_actve=(group==1). generate I_pass=(group==2). generate I_noex=(group==3). regress age I_actve I_pass I_noex Source SS df MS Number of obs = F( 3, 20) = 2.40 Model Prob > F = Resdual R-squared = Adj R-squared = Total Root MSE = age Coef. Std. Err. t P> t [95% Conf. Interval] I_actve I_pass I_noex _cons The predcton equaton s thus: Ŷ = *I_act *I_pass *I_noex The two analyses n Stata match (hooray), thus confrmng that a multple lnear regresson model utlzng approprately defned ndcator varables s equvalent to an analyss of varance. Sol_anova_1 of 2 STATA.docx Page 6 of 13

7 6. For the brave: Usng your output from your two analyses (1 st -analyss of varance, 2 nd regresson), obtan the predcted mean of Y =age at frst walkng twce n two ways. Predcton Usng One Way Analyss of Varance Actve Passve No-Exercse Control Predcton Usng Multple Lnear Regresson ˆµ 1 = (β+β) ˆ ˆ 0 1 = = ˆµ 2 = (β+β) ˆ ˆ 0 2 = = ˆµ 3 = (β+β) ˆ ˆ 0 3 = = ˆµ = β ˆ = anova age group -- output omtted ---. adjust, by(group) Dependent varable: age Command: anova group xb Key: xb = Lnear Predcton Sol_anova_1 of 2 STATA.docx Page 7 of 13

8 Practce wth two-way factoral analyss of varance Exercses #7-12 Data set used: fshgrowth.dta Consder agan the fsh growth data on page 38 of Notes 7. Introducton to Analyss of Varance. Lght (lght) Water Temp (temp) Fsh Growth (growth) 1=low 1=cold =low 1=cold =low 2=lukewarm =low 2=lukewarm =low 3=warm =low 3=warm =hgh 1=cold =hgh 1=cold =hgh 2=lukewarm =hgh 2=lukewarm =hgh 3=warm =hgh 3=warm 6.92 Codng Manual: Varable growth lght temp Codng contnuous 1 = low 2 = hgh 1 = cold 2 = lukewarm 3 = warm Sol_anova_1 of 2 STATA.docx Page 8 of 13

9 2 7. State the analyss of varance model usng notaton µ, α, β, (αβ) and σ as approprate. Defne all terms and constrants on the parameters j j Answer: ( ) 2 Y = µ + α + β + αβ + ε, where ε ~N(0,σ ) jk j j jk jk wth = 1, 2 ndexng lght ( αβ ) j = 1, 2, 3 ndexng temperature k = 1, 2 ndexng ndvdual fsh under lght "" at water temperature "j" µ = populaton mean fsh growth, over all groups 2 å α = effect of lght level "", wth α =0 j j =1 3 å β = effect of water temperature "j", wth β=0 j=1 j = nteracton effect of the combnaton of "th" lght level and "jth" water temperature 2 3 å j å =1 j=1 wth (αβ) = 0 and (αβ) = 0. j 8. Create the followng new varables wth accompanyng defntons Varable Codng _hgh = 1 f (lght s 2) 0 otherwse _luke = 1 f (temp s 2) 0 otherwse _warm = 1 f (temp s 3) 0 otherwse h_luke = (_hgh) * (_luke) h_warm = (_hgh)*(_warm). generate _hgh=(lght==2). generate _luke=(temp==2). generate _warm=(temp==3). generate h_luke=_hgh*_luke. generate h_warm=_hgh*_warm Sol_anova_1 of 2 STATA.docx Page 9 of 13

10 9. Perform a two way analyss of varance so as to reproduce the followng table Source Df SSQ MSQ F p-value Due LIGHT Due TEMP Due Interacton Error Total (Corrected) anova growth lght temp lght#temp Number of obs = 12 R-squared = Root MSE = Adj R-squared = Source Partal SS df MS F Prob > F Model lght temp lght#temp Resdual Total Perform a regresson analyss to obtan the followng table and estmates Source Df SSQ MSQ F p-value Due Model Due Resdual Total (Corrected) Predctor beta Se(beta) T=beta/se p-value I_hgh I_luke I_warm H_luke H_warm Intercept Sol_anova_1 of 2 STATA.docx Page 10 of 13

11 . regress growth _hgh _luke _warm h_luke h_warm Source SS df MS Number of obs = F( 5, 6) = 5.74 Model Prob > F = Resdual R-squared = Adj R-squared = Total Root MSE = growth Coef. Std. Err. t P> t [95% Conf. Interval] _hgh _luke _warm h_luke h_warm _cons Usng the output from each of your anova and regresson analyses, complete the followng tables and notce that they are the same. Estmated Mean Growth, by Condtons of Lght and Temperature Anova Analyss Cold Lukewarm Warm Low lght Hgh lght Sol_anova_1 of 2 STATA.docx Page 11 of 13

12 . anova growth lght temp lght#temp ---- output omtted here --. adjust, by(lght temp) Number of obs = 12 R-squared = Root MSE = Adj R-squared = Source Partal SS df MS F Prob > F Model lght temp lght#temp Resdual Total Dependent varable: growth Command: anova temp lght 1=cold 2=lukewarm 3=warm =low =hgh Key: Lnear Predcton Sol_anova_1 of 2 STATA.docx Page 12 of 13

13 Estmated Mean Growth, by Condtons of Lght and Temperature Regresson Analyss Cold Lukewarm Warm Low lght Hgh lght regress growth _hgh _luke _warm h_luke h_warm ---- output omtted here --. predct predcted_growth. table lght temp, contents(mean predcted_growth) temp lght 1=cold 2=lukewarm 3=warm =low =hgh Compare your answer to #11 wth the observed means. Observed Mean Growth, by Condtons of Lght and Temperature Cold Lukewarm Warm Low lght Hgh lght They match! Sol_anova_1 of 2 STATA.docx Page 13 of 13

Do not turn over until you are told to do so by the Invigilator.

Do not turn over until you are told to do so by the Invigilator. UNIVERSITY OF EAST ANGLIA School of Economcs Man Seres PG Examnaton 016-17 FINANCIAL ECONOMETRICS ECO-7009A Tme allowed: HOURS Answer ALL FOUR questons. Queston 1 carres a weght of 5%; queston carres 0%;

More information

Stata v 12 Illustration. One Way Analysis of Variance

Stata v 12 Illustration. One Way Analysis of Variance Stata v 12 Illustration Page 1. Preliminary Download anovaplot.. 2. Descriptives Graphs. 3. Descriptives Numerical 4. Assessment of Normality.. 5. Analysis of Variance Model Estimation.. 6. Tests of Equality

More information

Volume 30, Issue 4. Who likes circus animals?

Volume 30, Issue 4. Who likes circus animals? Volume 30, Issue 4 Who lkes crcus anmals? Roberto Zanola Unversty of Eastern Pedmont Abstract Usng a sample based on 268 questonnares submtted to people attendng the Acquatco Bellucc crcus, Italy, ths

More information

Notes on PS2

Notes on PS2 17.871 - Notes on PS2 Mike Sances MIT April 2, 2012 Mike Sances (MIT) 17.871 - Notes on PS2 April 2, 2012 1 / 9 Interpreting Regression: Coecient regress success_rate dist Source SS df MS Number of obs

More information

Appendix 6.1 The least-cost theorem and pollution control

Appendix 6.1 The least-cost theorem and pollution control Appendx 6.1 The least-cost theorem and polluton control nstruments Ths appendx s structured as follows. In Part 1, we defne the notaton used and set the scene for what follows. Then n Part 2 we derve a

More information

Stata Program Notes Biostatistics: A Guide to Design, Analysis, and Discovery Second Edition Chapter 12: Analysis of Variance

Stata Program Notes Biostatistics: A Guide to Design, Analysis, and Discovery Second Edition Chapter 12: Analysis of Variance Stata Program Notes Biostatistics: A Guide to Design, Analysis, and Discovery Second Edition Chapter 12: Analysis of Variance Program Note 12.1 - One-Way ANOVA and Multiple Comparisons The Stata command

More information

Bios 312 Midterm: Appendix of Results March 1, Race of mother: Coded as 0==black, 1==Asian, 2==White. . table race white

Bios 312 Midterm: Appendix of Results March 1, Race of mother: Coded as 0==black, 1==Asian, 2==White. . table race white Appendix. Use these results to answer 2012 Midterm questions Dataset Description Data on 526 infants with very low (

More information

Evaluating the statistical power of goodness-of-fit tests for health and medicine survey data

Evaluating the statistical power of goodness-of-fit tests for health and medicine survey data 8 th World IMACS / MODSIM Congress, Carns, Australa 3-7 July 29 http://mssanz.org.au/modsm9 Evaluatng the statstcal power of goodness-of-ft tests for health and medcne survey data Steele, M.,2, N. Smart,

More information

Midterm Exam. Friday the 29th of October, 2010

Midterm Exam. Friday the 29th of October, 2010 Midterm Exam Friday the 29th of October, 2010 Name: General Comments: This exam is closed book. However, you may use two pages, front and back, of notes and formulas. Write your answers on the exam sheets.

More information

Regression model for heat consumption monitoring and forecasting

Regression model for heat consumption monitoring and forecasting E3S Web of Conferences 39, 03005 (018) https://do.org/10.1051/e3sconf/0183903005 Regresson model for heat consumpton montorng and forecastng Tatyana Dobrovolskaya 1*, and Valery Stennkov 1 1 Melentev Energy

More information

1 Basic concepts for quantitative policy analysis

1 Basic concepts for quantitative policy analysis 1 Basc concepts for quanttatve polcy analyss 1.1. Introducton The purpose of ths Chapter s the ntroducton of basc concepts of quanttatve polcy analyss. They represent the components of the framework adopted

More information

Analyses Based on Combining Similar Information from Multiple Surveys

Analyses Based on Combining Similar Information from Multiple Surveys Secton on Survey Research Methods JSM 009 Analyses Based on Combnng Smlar Informaton from Multple Surveys Georga Roberts, Davd Bnder Statstcs Canada, Ottawa Ontaro Canada KA 0T6 Statstcs Canada, Ottawa

More information

Unit 2 Regression and Correlation 2 of 2 - Practice Problems SOLUTIONS Stata Users

Unit 2 Regression and Correlation 2 of 2 - Practice Problems SOLUTIONS Stata Users Unit 2 Regression and Correlation 2 of 2 - Practice Problems SOLUTIONS Stata Users Data Set for this Assignment: Download from the course website: Stata Users: framingham_1000.dta Source: Levy (1999) National

More information

WISE 2004 Extended Abstract

WISE 2004 Extended Abstract WISE 2004 Extended Abstract Does the Internet Complement Other Marketng Channels? Evdence from a Large Scale Feld Experment Erc Anderson Kellogg School of Management, Northwestern Unversty Erk Brynjolfsson

More information

Calculation and Prediction of Energy Consumption for Highway Transportation

Calculation and Prediction of Energy Consumption for Highway Transportation Calculaton and Predcton of Energy Consumpton for Hghway Transportaton Feng Qu, Wenquan L *, Qufeng Xe, Peng Zhang, Yueyng Huo School of Transportaton, Southeast Unversty, Nanjng 210096, Chna; *E-mal: wenql@seu.edu.cn

More information

The Multivariate Regression Model

The Multivariate Regression Model The Multivariate Regression Model Example Determinants of College GPA Sample of 4 Freshman Collect data on College GPA (4.0 scale) Look at importance of ACT Consider the following model CGPA ACT i 0 i

More information

A Longer Tail?: Estimating The Shape of Amazon s Sales Distribution Curve in Erik Brynjolfsson, Yu (Jeffrey) Hu, Michael D.

A Longer Tail?: Estimating The Shape of Amazon s Sales Distribution Curve in Erik Brynjolfsson, Yu (Jeffrey) Hu, Michael D. A Longer Tal?: Estmatng The Shape of Amazon s Sales Dstrbuton Curve n 2008 1. Introducton Erk Brynjolfsson, Yu (Jeffrey) Hu, Mchael D. Smth The term The Long Tal was coned by Wred s Chrs Anderson (Anderson

More information

PubHlth 640 Intermediate Biostatistics Unit 2 Regression and Correlation

PubHlth 640 Intermediate Biostatistics Unit 2 Regression and Correlation PubHlth 640 Intermediate Biostatistics Unit 2 Regression and Correlation Multiple Linear Regression Software: Stata v 10.1 Human p53 and Breast Cancer Risk Source: Matthews et al. Parity Induced Protection

More information

Optimization of the Size Distribution of Potato (Solanum-tuberosum) Tuber Using a Second-Order Rotatable Design

Optimization of the Size Distribution of Potato (Solanum-tuberosum) Tuber Using a Second-Order Rotatable Design Internatonal Journal of Appled Scence and Technology Vol. 7, No. ; June 07 Optmzaton of the Sze Dstrbuton of Potato (Solanum-tuberosum) Tuber Usng a Second-Order Rotatable Desgn Mr. Julus K. Koech Department

More information

Implementing Activity-Based Modeling Approach for Analyzing Rail Passengers Travel Behavior

Implementing Activity-Based Modeling Approach for Analyzing Rail Passengers Travel Behavior Implementng Actvty-Based Modelng Approach for Analyzng Ral Passengers Travel Behavor Jn K Eom Ph.D. and Dae-Seop Moon Ph.D. Korea Ralroad Research Insttute, Uwang, Korea Abstract Most travel demand models

More information

* STATA.OUTPUT -- Chapter 5

* STATA.OUTPUT -- Chapter 5 * STATA.OUTPUT -- Chapter 5.*bwt/confounder example.infile bwt smk gest using bwt.data.correlate (obs=754) bwt smk gest -------------+----- bwt 1.0000 smk -0.1381 1.0000 gest 0.3629 0.0000 1.0000.regress

More information

Prediction algorithm for users Retweet Times

Prediction algorithm for users Retweet Times , pp.9-3 http://dx.do.org/0.457/astl.05.83.03 Predcton algorthm for users Retweet Tmes Hahao Yu, Xu Feng Ba,ChengZhe Huang, Haolang Q Helongang Insttute of Technology, Harbn, Chna Abstract. In vew of the

More information

. *increase the memory or there will problems. set memory 40m (40960k)

. *increase the memory or there will problems. set memory 40m (40960k) Exploratory Data Analysis on the Correlation Structure In longitudinal data analysis (and multi-level data analysis) we model two key components of the data: 1. Mean structure. Correlation structure (after

More information

Numerical Analysis about Urban Climate Change by Urbanization in Shanghai

Numerical Analysis about Urban Climate Change by Urbanization in Shanghai Numercal Analyss about Urban Clmate Change by Urbanzaton n Shangha Hafeng L 1, Wejun Gao 2 and Tosho Ojma 3 1 Research Assocate, School of Scence and Engneerng, Waseda Unversty, Japan 2 Assocate Professor,

More information

RIGOROUS MODELING OF A HIGH PRESSURE ETHYLENE-VINYL ACETATE (EVA) COPOLYMERIZATION AUTOCLAVE REACTOR. I-Lung Chien, Tze Wei Kan and Bo-Shuo Chen

RIGOROUS MODELING OF A HIGH PRESSURE ETHYLENE-VINYL ACETATE (EVA) COPOLYMERIZATION AUTOCLAVE REACTOR. I-Lung Chien, Tze Wei Kan and Bo-Shuo Chen RIGOROUS MODELING OF A HIGH PRESSURE ETHYLENE-VINYL ACETATE (EVA) COPOLYMERIZATION AUTOCLAVE REACTOR I-Lung Chen, Tze We an and Bo-Shuo Chen Department of Chemcal Engneerng, Natonal Tawan Unversty of Scence

More information

EVALUATING THE PERFORMANCE OF SUPPLY CHAIN SIMULATIONS WITH TRADEOFFS BETWEEN MULITPLE OBJECTIVES. Pattita Suwanruji S. T. Enns

EVALUATING THE PERFORMANCE OF SUPPLY CHAIN SIMULATIONS WITH TRADEOFFS BETWEEN MULITPLE OBJECTIVES. Pattita Suwanruji S. T. Enns Proceedngs of the 00 Wnter Smulaton Conference R.G. Ingalls, M. D. Rossett, J. S. Smth, and B. A. Peters, eds. EVALUATING THE PERFORMANCE OF SUPPLY CHAIN SIMULATIONS WITH TRADEOFFS BETWEEN MULITPLE OBJECTIVES

More information

RELATIONSHIP BETWEEN BUSINESS STRATEGIES FOLLOWED BY SERVICE ORGANIZATIONS AND THEIR PERFORMANCE MEASUREMENT APPROACH

RELATIONSHIP BETWEEN BUSINESS STRATEGIES FOLLOWED BY SERVICE ORGANIZATIONS AND THEIR PERFORMANCE MEASUREMENT APPROACH RELATIONSHIP BETWEEN BUSINESS STRATEGIES FOLLOWED BY SERVICE ORGANIZATIONS AND THEIR PERFORMANCE MEASUREMENT APPROACH Carlos F. Gomes, School of Economcs, ISR- Insttute of Systems and Robotcs, Unversty

More information

Amir Hossein Amirkhani 1, Azita Avarzmani 2*

Amir Hossein Amirkhani 1, Azita Avarzmani 2* Internatonal Research Journal of Management Scences. Vol., 3 (8), 363-374, 205 Avalable onlne at http://www.rjmsjournal.com ISSN 247-964X 205 The Relatonshp between Organzatonal Structure and Organzatonal

More information

Soci Statistics for Sociologists

Soci Statistics for Sociologists University of North Carolina Chapel Hill Soci708-001 Statistics for Sociologists Fall 2009 Professor François Nielsen Stata Commands for Module 11 Multiple Regression For further information on any command

More information

A Large-Scale Field Experiment to Evaluate the Effectiveness of Paid Search Advertising

A Large-Scale Field Experiment to Evaluate the Effectiveness of Paid Search Advertising 6684 2017 September 2017 A Large-Scale Feld Experment to Evaluate the Effectveness of Pad Search Advertsng Lorenzo Covello, Ur Gneezy, Lorenz Goette Impressum: CESfo Workng Papers ISSN 2364 1428 (electronc

More information

Zirconium Solubility in Aluminum Alloys

Zirconium Solubility in Aluminum Alloys roceedngs of the 9 th Internatonal Conference on umnum loys (2004) 1353 Edted by J.F. Ne, A.J. Morton and B.C. Muddle Insttute of Materals Engneerng Australasa Ltd Zrconum Solublty n umnum loys C. Sgl

More information

Introduction of STATA

Introduction of STATA Introduction of STATA News: There is an introductory course on STATA offered by CIS Description: Intro to STATA On Tue, Feb 13th from 4:00pm to 5:30pm in CIT 269 Seats left: 4 Windows, 7 Macintosh For

More information

Influence of Selected Variables on the Price of Petroleum Products in the Republic of Croatia

Influence of Selected Variables on the Price of Petroleum Products in the Republic of Croatia Economy Transdscplnarty Cognton www.ugb.ro/etc Volume 6, Issue 2/203 24-30 Influence of Selected Varables on the Prce of Petroleum Products n the Republc of Croata Ton MILUN, Marna HORVATOVIĆ, Ivona POSARIĆ

More information

Early warning models of financial distress. Case study of the Romanian firms listed on RASDAQ

Early warning models of financial distress. Case study of the Romanian firms listed on RASDAQ Theoretcal and Appled Economcs Volume XX (2013), No. 5(582), pp. 7-14 Early warnng models of fnancal dstress. Case study of the Romanan frms lsted on RASDAQ Mădălna Ecaterna ANDREICA The Bucharest Unversty

More information

CHECKING INFLUENCE DIAGNOSTICS IN THE OCCUPATIONAL PRESTIGE DATA

CHECKING INFLUENCE DIAGNOSTICS IN THE OCCUPATIONAL PRESTIGE DATA PLS 802 Spring 2018 Professor Jacoby CHECKING INFLUENCE DIAGNOSTICS IN THE OCCUPATIONAL PRESTIGE DATA This handout shows the log from a Stata session that examines the Duncan Occupational Prestige data

More information

Direct payments, spatial competition and farm survival in Norway

Direct payments, spatial competition and farm survival in Norway Drect payments, spatal competton and farm survval n Norway Hugo Storm* a, Klaus Mttenzwe b, and Thomas Heckele a a Insttute for Food and Resource Economcs (ILR), Unversty of Bonn b Norwegan Agrcultural

More information

How Education Level, Gender, and Social Network Correlate With Migrant Workers Starting Income in China s Urban Cities *

How Education Level, Gender, and Social Network Correlate With Migrant Workers Starting Income in China s Urban Cities * US-Chna Educaton Revew B, January 2016, Vol. 6, No. 1, 63-70 do:10.17265/2161-6248/2016.01.006 D DAVID PUBLISHING How Educaton Level, Gender, and Socal Network Correlate Wth Mgrant Workers Startng Income

More information

Spatial Analysis of Ring Oscillator Devices

Spatial Analysis of Ring Oscillator Devices 6.780 Term Project Spatal Analyss of Rng Oscllator Devces A. Soman, L. W. Teo, and D. S. Bonng, Member, IEEE Abstract Spatal dependences tend to ntroduce correlatons among parameter values obtaned from

More information

Group Comparisons: Using What If Scenarios to Decompose Differences Across Groups

Group Comparisons: Using What If Scenarios to Decompose Differences Across Groups Group Comparisons: Using What If Scenarios to Decompose Differences Across Groups Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised February 15, 2015 We saw that the

More information

Varunraj Valsaraj, Kara Kockelman, Jennifer Duthie, and Brenda Zhou University of Texas at Austin. Original Version: September 2007.

Varunraj Valsaraj, Kara Kockelman, Jennifer Duthie, and Brenda Zhou University of Texas at Austin. Original Version: September 2007. FORECASTING EMPLOYMENT & POPULATION IN TEXAS: An Investgaton on TELUM Requrements Assumptons and Results ncludng a Study of Zone Sze Effects for the Austn and Waco Regons Varunraj Valsaraj Kara Kockelman

More information

ANALYSIS OF NATURAL RADIONUCLIDES IN COAL, SLAG AND ASH IN COAL-FIRED POWER PLANTS IN SERBIA

ANALYSIS OF NATURAL RADIONUCLIDES IN COAL, SLAG AND ASH IN COAL-FIRED POWER PLANTS IN SERBIA J o u r n a l o f J. Mn. Metall. Sect. B-Metall. 47 (2) B (2011) 149-155 M n n g a n d M e t a l l u r g y ANALYSIS OF NATURAL RADIONUCLIDES IN COAL, SLAG AND ASH IN COAL-FIRED POWER PLANTS IN SERBIA M.M.

More information

Milk Data Analysis. 1. Objective: analyzing protein milk data using STATA.

Milk Data Analysis. 1. Objective: analyzing protein milk data using STATA. 1. Objective: analyzing protein milk data using STATA. 2. Dataset: Protein milk data set (in the class website) Data description: Percentage protein content of milk samples at weekly intervals from each

More information

Avian Abundance and Habitat Structure

Avian Abundance and Habitat Structure ESCI 408 FIELD METHODS IN WILDLIFE ECOLOGY Avan Abundance and Habtat Structure INTRODUCTION Research Queston: Whch habtat characterstc(s determne the local abundance of a partcular brd speces (e.g., golden-crowned

More information

You have plenty of time to finish. Take your time and relax. And, have a safe and Happy Holiday!

You have plenty of time to finish. Take your time and relax. And, have a safe and Happy Holiday! Ecoomcs 3 Professor Spearot Itroducto to Ecoometrcs Fall 007 Fal Eam Name Fal Eam Verso A 80 Pots You must aswer all the questos. The eam s closed book ad closed otes. You ma use calculators, but the must

More information

An Empirical Study about the Marketization Degree of Labor Market from the Perspective of Wage Determination Mechanism

An Empirical Study about the Marketization Degree of Labor Market from the Perspective of Wage Determination Mechanism An Emprcal Study about the Marketzaton Degree of Labor Market from the Perspectve of Wage Determnaton Mechansm Qushuo He Shenzhen Insttute of Informaton Technology, Shenzhen 51809, Chna heqs@szt.com.cn

More information

Experiments with Protocols for Service Negotiation

Experiments with Protocols for Service Negotiation PROCEEDINGS OF THE WORKSHOP ON APPLICATIONS OF SOFTWARE AGENTS ISBN 978-86-7031-188-6, pp. 25-31, 2011 Experments wth Protocols for Servce Negotaton Costn Bădcă and Mhnea Scafeş Unversty of Craova, Software

More information

Efficacy of Copper Based Algaecides for Control of Quagga and Zebra Mussels

Efficacy of Copper Based Algaecides for Control of Quagga and Zebra Mussels Effcacy of Copper Based Algaecdes for Control of Quagga and Zebra Mussels Prepared by: Renata Claud M.Sc., T.H. Prescott P.Eng., Sergey Mastsky Ph.D. & Heather Coffey M.Sc. January 1, 214 823 County Road

More information

Fiber length of pulp and paper by automated optical analyzer using polarized light

Fiber length of pulp and paper by automated optical analyzer using polarized light T 27 om-2 PROVISIOA METHOD 99 OFFICIA METHOD 988 REVISED 2002 REVISED 2007 REVISED 202 202 TAPPI The nformaton and data contaned n ths document were prepared by a techncal commttee of the Assocaton. The

More information

SOCY7706: Longitudinal Data Analysis Instructor: Natasha Sarkisian Two Wave Panel Data Analysis

SOCY7706: Longitudinal Data Analysis Instructor: Natasha Sarkisian Two Wave Panel Data Analysis SOCY7706: Longitudinal Data Analysis Instructor: Natasha Sarkisian Two Wave Panel Data Analysis In any longitudinal analysis, we can distinguish between analyzing trends vs individual change that is, model

More information

Introducing income distribution to the Linder hypothesis

Introducing income distribution to the Linder hypothesis Introducng ncome dstrbuton to the Lnder hypothess Helena Bohman Jönköpng Internatonal Busness School Jönköpng Unversty P.O. Box 1026 SE-551 11 Jönköpng E-mal: helena.bohman@jbs.hj.se Désrée Nlsson Jönköpng

More information

Example Analysis with STATA

Example Analysis with STATA Example Analysis with STATA Exploratory Data Analysis Means and Variance by Time and Group Correlation Individual Series Derived Variable Analysis Fitting a Line to Each Subject Summarizing Slopes by Group

More information

ROBUST ESTIMATION OF STANDARD ERRORS

ROBUST ESTIMATION OF STANDARD ERRORS ROBUST ESTIMATION OF STANDARD ERRORS -- log: Z:\LDA\DataLDA\sitka_Lab8.log log type: text opened on: 18 Feb 2004, 11:29:17. ****The observed mean responses in each of the 4 chambers; for 1988 and 1989.

More information

Volume 29, Issue 2. How do firms interpret a job loss? Evidence from the National Longitudinal Survey of Youth

Volume 29, Issue 2. How do firms interpret a job loss? Evidence from the National Longitudinal Survey of Youth Volume 29, Issue 2 How do frms nterpret a job loss? Evdence from the Natonal Longtudnal Survey of Youth Stephen M. Kosovch Stephen F. Austn State Unversty Abstract Emprcal studes n the job dsplacement

More information

Estimating the causal effect of improved fallows on farmer welfare using robust identification strategies in Chongwe - Zambia

Estimating the causal effect of improved fallows on farmer welfare using robust identification strategies in Chongwe - Zambia Estmatng the causal effect of mproved fallows on farmer welfare usng robust dentfcaton strateges n Chongwe - Zamba Elas Kuntashula and Erc Mungatana Invted paper presented at the 4 th Internatonal Conference

More information

An Application of MILP-based Block Planning in the Chemical Industry

An Application of MILP-based Block Planning in the Chemical Industry The Eghth Internatonal Symposum on Operatons Research and Its Applcatons (ISORA 09) Zhangjaje, Chna, September 20 22, 2009 Copyrght 2009 ORSC & APORC, pp. 103 110 An Applcaton of MILP-based Block Plannng

More information

Example Analysis with STATA

Example Analysis with STATA Example Analysis with STATA Exploratory Data Analysis Means and Variance by Time and Group Correlation Individual Series Derived Variable Analysis Fitting a Line to Each Subject Summarizing Slopes by Group

More information

Willingness to Pay for the Quality of Drinking Water

Willingness to Pay for the Quality of Drinking Water The Pakstan Development Revew 46 : 4 Part II (Wnter 2007) pp. 767 777 Wllngness to Pay for the Qualty of Drnkng Water ABDUL SATTAR and EATZAZ AHMAD * 1. INTRODUCTION Wllngness-to-Pay to avod rsks has long

More information

Comparative Advantage, Information and the Allocation of. Workers to Tasks: Evidence from an Agricultural Labor Market. Andrew D. Foster.

Comparative Advantage, Information and the Allocation of. Workers to Tasks: Evidence from an Agricultural Labor Market. Andrew D. Foster. Comparatve Advantage, Informaton and the Allocaton of Workers to asks: Evdence from an Agrcultural Labor Market Andrew D. Foster and Mark R. Rosenzweg Unversty of Pennsylvana February 1996 he research

More information

Learning Curve: Analysis of an Agent Pricing Strategy Under Varying Conditions

Learning Curve: Analysis of an Agent Pricing Strategy Under Varying Conditions Learnng Curve: Analyss of an Agent Prcng Strategy Under Varyng Condtons Joan Morrs, Patte Maes MIT Meda Laboratory 20 Ames Street, E-0 Cambrdge, MA 02 USA {joane, patte}@meda.mt.edu Amy Greenwald Computer

More information

The Employment Effects of Low-Wage Subsidies

The Employment Effects of Low-Wage Subsidies The Employment Effects of Low-Wage Subsdes Krstna Huttunen Jukka Prttlä Roope Uustalo CESIFO WORKING PAPER NO. 3043 CATEGORY 4: LABOUR MARKETS MAY 2010 An electronc verson of the paper may be downloaded

More information

Estimating the causal effect of improved fallows on farmer welfare using robust identification strategies in Chongwe - Zambia

Estimating the causal effect of improved fallows on farmer welfare using robust identification strategies in Chongwe - Zambia Estmatng the causal effect of mproved fallows on farmer welfare usng robust dentfcaton strateges n Chongwe - Zamba Elas Kuntashula Unversty of Pretora Department of Agrcultural Economcs, Extenson and Rural

More information

MULTIPLE FACILITY LOCATION ANALYSIS PROBLEM WITH WEIGHTED EUCLIDEAN DISTANCE. Dileep R. Sule and Anuj A. Davalbhakta Louisiana Tech University

MULTIPLE FACILITY LOCATION ANALYSIS PROBLEM WITH WEIGHTED EUCLIDEAN DISTANCE. Dileep R. Sule and Anuj A. Davalbhakta Louisiana Tech University MULTIPLE FACILITY LOCATION ANALYSIS PROBLEM WITH WEIGHTED EUCLIDEAN DISTANCE Dleep R. Sule and Anuj A. Davalbhakta Lousana Tech Unversty ABSTRACT Ths paper presents a new graphcal technque for cluster

More information

Guideline on evaluating the impact of policies -Quantitative approach-

Guideline on evaluating the impact of policies -Quantitative approach- Guideline on evaluating the impact of policies -Quantitative approach- 1 2 3 1 The term treatment derives from the medical sciences and has more meaning when is used in that context. However, this term

More information

Biostatistics 208. Lecture 1: Overview & Linear Regression Intro.

Biostatistics 208. Lecture 1: Overview & Linear Regression Intro. Biostatistics 208 Lecture 1: Overview & Linear Regression Intro. Steve Shiboski Division of Biostatistics, UCSF January 8, 2019 1 Organization Office hours by appointment (Mission Hall 2540) E-mail to

More information

PRODUCTIVE PUBLIC EXPENDITURE AND IMPERFECT COMPETITION WITH ENDOGENOUS PRICE MARKUP: COMMENT

PRODUCTIVE PUBLIC EXPENDITURE AND IMPERFECT COMPETITION WITH ENDOGENOUS PRICE MARKUP: COMMENT PRODUCTIVE PUBLIC EXPENDITURE AND IMPERFECT COMPETITION WITH ENDOGENOUS PRICE MARKUP: COMMENT Luís F. Costa (ISEG, Unversdade Técnca de Lsboa and UECE) Nuno Palma (London School of Economcs) ABSTRACT In

More information

The Substitutability of Labor of Selected Ethnic Groups in the US Labor Market

The Substitutability of Labor of Selected Ethnic Groups in the US Labor Market DISCUSSION PAPER SERIES IZA DP No. 1945 The Substtutablty of Labor of Selected Ethnc Groups n the US Labor Market Martn Kahanec January 2006 Forschungsnsttut zur Zukunft der Arbet Insttute for the Study

More information

Construction of Control Chart Based on Six Sigma Initiatives for Regression

Construction of Control Chart Based on Six Sigma Initiatives for Regression 2018 IJSRST Volume 4 Issue 2 Prnt ISSN: 2395-6011 Onlne ISSN: 2395-602X Themed Secton: Scence and Technology Constructon of Control Chart Based on Sx Sgma Intatves for Regresson ABSTRACT R. Radhakrshnan

More information

Field Burning of Crop Residues

Field Burning of Crop Residues SMED Report No 62 2004 Feld Burnng of Crop Resdues Heléne Wkström, Rolf Adolfsson, Statstcs Sweden 2004-06-30 Commssoned by the Swedsh Envronmental Protecton Agency Publshed at: www.smed.se Publsher: Swedsh

More information

Study on Productive Process Model Basic Oxygen Furnace Steelmaking Based on RBF Neural Network

Study on Productive Process Model Basic Oxygen Furnace Steelmaking Based on RBF Neural Network IJCSI Internatonal Journal of Computer Scence Issues, Vol., Issue 3, No 2, May 24 ISSN (Prnt): 694-84 ISSN (Onlne): 694-784 www.ijcsi.org 7 Study on Productve Process Model Basc Oxygen Furnace Steelmakng

More information

İnsan Tunalı November 29, 2018 Econ 511: Econometrics I. ANSWERS TO ASSIGNMENT 10: Part II STATA Supplement

İnsan Tunalı November 29, 2018 Econ 511: Econometrics I. ANSWERS TO ASSIGNMENT 10: Part II STATA Supplement İnsan Tunalı November 29, 2018 Econ 511: Econometrics I STATA Exercise 1 ANSWERS TO ASSIGNMENT 10: Part II STATA Supplement TASK 1: --- name: log: g:\econ511\heter_housinglog log type: text opened

More information

Battle of the Retail Channels: How Internet Selection and Local Retailer Proximity Drive Cross-Channel Competition

Battle of the Retail Channels: How Internet Selection and Local Retailer Proximity Drive Cross-Channel Competition Assocaton for Informaton Systems AIS Electronc Lbrary (AISeL) ICIS 2007 Proceedngs Internatonal Conference on Informaton Systems (ICIS) December 2007 Battle of the Retal Channels: How Internet Selecton

More information

Key Words: dairy; profitability; rbst; recombinant bovine Somatotropin.

Key Words: dairy; profitability; rbst; recombinant bovine Somatotropin. AgBoForum Volume 4, Number 2 2001 Pages 115-123 THE ESTIMATED PROFIT IMPACT OF RECOMBINANT BOVINE SOMATOTROPIN ON NEW YORK DAIRY FARMS FOR THE YEARS 1994 THROUGH 1997 Loren W. Tauer 1 Data from New York

More information

PREDICTING THE WAGES OF EMPLOYEES USING SOCIO-ECONOMIC AND DEMOGRAPHIC DETERMINANTS: A CASE OF PAKISTAN

PREDICTING THE WAGES OF EMPLOYEES USING SOCIO-ECONOMIC AND DEMOGRAPHIC DETERMINANTS: A CASE OF PAKISTAN Proc. 10 th Int. Conference on Statstcal Scences Lahore, Pakstan March 7-9, 2013, Vol. 24, pp. 179-196 PREDICTING THE WAGES OF EMPLOYEES USING SOCIO-ECONOMIC AND DEMOGRAPHIC DETERMINANTS: A CASE OF PAKISTAN

More information

Investigation of Methods for Calculation of Interdiffusion Coefficients of Iron and Nickel Powder Mixtures

Investigation of Methods for Calculation of Interdiffusion Coefficients of Iron and Nickel Powder Mixtures Investgaton o Methods or Calculaton o Interduson Coecents o Iron and Nckel Powder Mxtures F.NAZEMI Materal Eng.Dept. Isahan Unversty o Technology Isahan IRAN Faranaknazem@Gmal.Com Abstract. In ths research,

More information

PSC 508. Jim Battista. Dummies. Univ. at Buffalo, SUNY. Jim Battista PSC 508

PSC 508. Jim Battista. Dummies. Univ. at Buffalo, SUNY. Jim Battista PSC 508 PSC 508 Jim Battista Univ. at Buffalo, SUNY Dummies Dummy variables Sometimes we want to include categorical variables in our models Numerical variables that don t necessarily have any inherent order and

More information

USDA-NRCS s soil surveys are conducted at pre-designated spatial units, known as map units

USDA-NRCS s soil surveys are conducted at pre-designated spatial units, known as map units Role of Ethanol Plants n Dakotas Land Use Change: Incorporatng Flexble Trends n the Dfference-n-Dfference Framework wth Remotely-Sensed Data Supplementary Informaton Data Notes - Sol Qualty USDA-NRCS s

More information

Social Interactions and Endogenous Association. October 2006

Social Interactions and Endogenous Association. October 2006 Socal Interactons and Endogenous ssocaton October 26 Bruce. Wenberg Oho State Unversty, IZ, and NBER Department of Economcs 945 North gh Street Columbus, Oho 432 wenberg.27@osu.edu http://www.brucewenberg.net

More information

Research on the Process of Runoff and Sediment-production in the Shunjiagou Small Watershed by Applying Automatic Measurement System

Research on the Process of Runoff and Sediment-production in the Shunjiagou Small Watershed by Applying Automatic Measurement System Research on the Process of Runoff and -producton n the Shunjagou Small Watershed by Applyng Automatc Measurement System Zhou Janghong, Le Tngwu College of Hydraulc and Cvl Engneerng, Chna Agrcultural Unversty,

More information

ITEM 4.4.b. OF THE AGENDA TYPOLOGY OF SAMPLING STRATEGIES UPDATED METHODOLOGICAL INFORMATION. Doc. ESTAT/F5/ES/201 (available in EN) Orig.

ITEM 4.4.b. OF THE AGENDA TYPOLOGY OF SAMPLING STRATEGIES UPDATED METHODOLOGICAL INFORMATION. Doc. ESTAT/F5/ES/201 (available in EN) Orig. Luxembourg, May 2010 AC/RDR/AMP ----------------------------------------------------- Drectorate F: Socal Statstcs and Informaton Socety Unt F5: Health and food safety; Crme Doc. (avalable n EN) Org. :

More information

Researches on the best-fitted talents recommendation algorithm

Researches on the best-fitted talents recommendation algorithm Researches on the best-ftted talents recommendaton algorthm Shjun ao, Zhuo 2, Lang Zhang. he sxth faculty of Informaton Engneerng, Unversty, Zhengzhou 45000, Chna E-mal: ysj@zzu.edu.cn 2. he sxth faculty

More information

The relative value of internal and external information sources to innovation

The relative value of internal and external information sources to innovation The relatve value of nternal and external nformaton sources to nnovaton Anthony Arundel and Catalna Bordoy MERIT, Unversty of Maastrcht Abstract Ths workng paper nvestgates the factors that nfluence frms

More information

A STUDY ON PROPERTIES OF WATER SUBSTITUTE SOLID PHANTOM USING EGS CODE

A STUDY ON PROPERTIES OF WATER SUBSTITUTE SOLID PHANTOM USING EGS CODE Proceedngs of the Tenth EGS4 Users' eetng n Japan, KEK Proceedngs 2002-18, p.55-64 A STUDY ON PROPERTIES OF WATER SUBSTITUTE SOLID PHANTO USING EGS CODE H. Satoh a, T. Tomaru b, T. Fujsak c, S. Abe c,

More information

An Analysis of Auction Volume and Market Competition for the Coastal Forest Regions in British Columbia

An Analysis of Auction Volume and Market Competition for the Coastal Forest Regions in British Columbia An Analyss of Aucton Volume and Market Competton for the Coastal Forest Regons n Brtsh Columba Susan Athey, Peter Cramton, and Allan Ingraham 1 Market Desgn Inc. and Crteron Auctons 0 September 00 The

More information

INTERCONNECTION AND GATE DELAYS IN CMOS VLSI CIRCUITS

INTERCONNECTION AND GATE DELAYS IN CMOS VLSI CIRCUITS INTERCONNECTION AND GATE DELAYS IN CMOS VLSI CIRCUITS El beta PIWOWARSKA Warsaw Unversty of Technology, Insttute of Mcroelectroncs & Optoelectroncs ul. Koszykowa 75, 00-662 Warszawa, POLAND tel./fax: (48)-(22)-25-30-55,

More information

PubHlth Introduction to Biostatistics. 1. Summarizing Data Illustration: STATA version 10 or 11. A Visit to Yellowstone National Park, USA

PubHlth Introduction to Biostatistics. 1. Summarizing Data Illustration: STATA version 10 or 11. A Visit to Yellowstone National Park, USA PubHlth 540 - Introduction to Biostatistics 1. Summarizing Data Illustration: Stata (version 10 or 11) A Visit to Yellowstone National Park, USA Source: Chatterjee, S; Handcock MS and Simonoff JS A Casebook

More information

NBER WORKING PAPER SERIES HOW LARGE ARE THE IMPACTS OF CARBON MOTIVATED BORDER TAX ADJUSTMENTS. Yan Dong John Whalley

NBER WORKING PAPER SERIES HOW LARGE ARE THE IMPACTS OF CARBON MOTIVATED BORDER TAX ADJUSTMENTS. Yan Dong John Whalley NBER WORKING PAPER SERIES HOW LARGE ARE THE IMPACTS OF CARBON MOTIVATED BORDER TAX ADJUSTMENTS Yan Dong John Whalley Workng Paper 15613 http://www.nber.org/papers/w15613 NATIONAL BUREAU OF ECONOMIC RESEARCH

More information

RECEIVING WATER HYDRAULICS ASSIGNMENT 2

RECEIVING WATER HYDRAULICS ASSIGNMENT 2 RECEIVING WATER HYDRAULICS ASSIGNMENT 2 Desgn of wastewater dscharge from the cty of Göteborg. Example of a dffuser n a stratfed coastal sea Example of retenton tme calculatons Ths assgnment conssts of

More information

Lecture 2a: Model building I

Lecture 2a: Model building I Epidemiology/Biostats VHM 812/802 Course Winter 2015, Atlantic Veterinary College, PEI Javier Sanchez Lecture 2a: Model building I Index Page Predictors (X variables)...2 Categorical predictors...2 Indicator

More information

Overeducation in Cyprus

Overeducation in Cyprus Overeducaton n Cyprus Andr Kyrz The Unversty of Lecester Department of Economcs Abstract In ths paper we nvestgate the effects of excessve and lmted schoolng on the ndvduals earnngs n Cyprus. Ths mportant

More information

Trunkierte Regression: simulierte Daten

Trunkierte Regression: simulierte Daten Trunkierte Regression: simulierte Daten * Datengenerierung set seed 26091952 set obs 48 obs was 0, now 48 gen age=_n+17 gen yhat=2000+200*(age-18) gen wage = yhat + 2000*invnorm(uniform()) replace wage=max(0,wage)

More information

You can find the consultant s raw data here:

You can find the consultant s raw data here: Problem Set 1 Econ 475 Spring 2014 Arik Levinson, Georgetown University 1 [Travel Cost] A US city with a vibrant tourist industry has an industrial accident (a spill ) The mayor wants to sue the company

More information

EVALUATE THE IMPACT OF CONTEMPORARY INFORMATION SYSTEMS AND THE INTERNET ON IMPROVING BANKING PERFORMANCE

EVALUATE THE IMPACT OF CONTEMPORARY INFORMATION SYSTEMS AND THE INTERNET ON IMPROVING BANKING PERFORMANCE VOLUME 2, 2011 EVALUATE THE IMPACT OF CONTEMPORARY INFORMATION SYSTEMS AND THE INTERNET ON IMPROVING BANKING PERFORMANCE Akram Jalal Karm, Allam M. Hamdan Ahla Unversty, Kngdom of Bahran Ths paper examnes

More information

Do Remittances Alter Labor Market Participation? A Study of Albania

Do Remittances Alter Labor Market Participation? A Study of Albania MPRA Munch Personal RePEc Archve Do Remttances Alter Labor Market Partcpaton? A Study of Albana Ermra Hoxha Kalaj Unversty of Trento 2009 Onlne at http://mpra.ub.un-muenchen.de/48271/ MPRA Paper No. 48271,

More information

Spatial difference of regional carbon emissions in China

Spatial difference of regional carbon emissions in China Avalable onlne www.jocpr.com Journal of Chemcal and Pharmaceutcal Research, 2014, 6(7): 2741-2745 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 Spatal dfference of regonal carbon emssons n Chna

More information

COMPARING MODEL ESTIMATES: THE LINEAR PROBABILITY MODEL AND LOGISTIC REGRESSION

COMPARING MODEL ESTIMATES: THE LINEAR PROBABILITY MODEL AND LOGISTIC REGRESSION PLS 802 Spring 2018 Professor Jacoby COMPARING MODEL ESTIMATES: THE LINEAR PROBABILITY MODEL AND LOGISTIC REGRESSION This handout shows the log of a STATA session that compares alternative estimates of

More information

Sociology 7704: Regression Models for Categorical Data Instructor: Natasha Sarkisian. Preliminary Data Screening

Sociology 7704: Regression Models for Categorical Data Instructor: Natasha Sarkisian. Preliminary Data Screening r's age when 1st child born 2 4 6 Density.2.4.6.8 Density.5.1 Sociology 774: Regression Models for Categorical Data Instructor: Natasha Sarkisian Preliminary Data Screening A. Examining Univariate Normality

More information

REGIONAL DEVELOPMENT AND CRIMINALITY RATE IN ROMANIA: INSIGHTS FROM A SPATIAL ANALYSIS

REGIONAL DEVELOPMENT AND CRIMINALITY RATE IN ROMANIA: INSIGHTS FROM A SPATIAL ANALYSIS REGIONAL DEVELOPMENT AND CRIMINALITY RATE IN ROMANIA: INSIGHTS FROM A SPATIAL ANALYSIS Zz GOSCHIN 1 Abstract: Although many recent studes have approached the topc of crmnalty, the regonal dmenson of the

More information

emissions in the Indonesian manufacturing sector Rislima F. Sitompul and Anthony D. Owen

emissions in the Indonesian manufacturing sector Rislima F. Sitompul and Anthony D. Owen Mtgaton optons for energy-related CO 2 emssons n the Indonesan manufacturng sector Rslma F. Stompul and Anthony D. Owen School of Economcs, The Unversty of New South Wales, Sydney, Australa Why mtgaton

More information