One Sample T-Test With Howell Data, IQ of Students in Vermont

Size: px
Start display at page:

Download "One Sample T-Test With Howell Data, IQ of Students in Vermont"

Transcription

1 One Sample T-Test With Howell Data, IQ of Students in Vermont data howell; infile 'C:\Users\Vati\Documents\StatData\howell.dat'; input addsc sex repeat iq engl engg gpa socprob dropout; IQ_diff = iq - 100; run; *Want to test null hypothesis that mean IQ is 100; proc means mean stddev n skewness kurtosis t prt CLM; var iq IQ_diff; run; One Sample T-Test With Howell Data, IQ of Students in Vermont The MEANS Procedure Variable Mean Std Dev N Skewness Kurtosis t Value Pr > t Lower 95% Upper 95% iq IQ_diff Data CI1; t = 0.19 ; n = 88 ; df = n-1; d = t/sqrt(n); ncp_lower = TNONCT(t,df,.975); ncp_upper = TNONCT(t,df,.025); d_lower = ncp_lower/sqrt(n); d_upper = ncp_upper/sqrt(n); output; run; proc print; var d d_lower d_upper; run; Obs d d_lower d_upper Vermont students mean IQ (M = , SD = 12.98) did not differ significantly from 100, t(87) = 0.19, p =.85, d =.02. A 95% CI for the difference in means runs from in in IQ units and from -.19 to.23 in standard deviation units

2 Experiment 2 of Karl's Dissertation Correlated t-tests, Visits to Mus Tunnel vs Rat Tunnel, Three Nursing Groups data Mus; infile 'C:\Users\Vati\Documents\StatData\tunnel2.dat'; input nurs $ 1-2 L1 3-5 L2 6-8 t t v_mus 15- v_rat 17-18; *t_mus=sqrt(1.575 * t1 +.5); *t_rat=sqrt(1.575 * t2 +.5); *L_mus=LOG10(1.575 * L1 + 1); *L_rat=LOG10(1.575 * L2 + 1); v_diff=v_mus - v_rat; *t_diff=t_mus - t_rat; *L_diff=L_mus - L_rat; proc sort; by nurs; proc means mean stddev n skewness kurtosis t prt CLM; var V_mus V_rat V_diff; by nurs; run; Experiment 2 of Karl's Dissertation Correlated t-tests, Visits to Mus Tunnel vs Rat Tunnel, Three Nursing Groups The MEANS Procedure nurs=mm Variable Mean Std Dev N Skewness Kurtosis t Value Pr > t Lower 95% Upper 95% v_mus v_rat v_diff The MM mice made significantly more visits to the Mus-scented tunnel (M = 22.44, s = 12.82) than to the Rattus-scented tunnel (M = 7.56, s = 5.89), t(15) = 5.64, p <.001, d = I did not report the unstandardized confidence intervals here, as I felt they would not add much to understanding the results. nurs=mr Variable Mean Std Dev N Skewness Kurtosis t Value Pr > t Lower 95% Upper 95% v_mus v_rat v_diff

3 The MR mice made significantly more visits to the Mus-scented tunnel (M = 22.31, s = 10.21) than to the Rattus-scented tunnel (M = 7.56, s = 5.73), t(15) = 7.80, p <.001, d = nurs=rr Variable Mean Std Dev N Skewness Kurtosis t Value Pr > t Lower 95% Upper 95% v_mus v_rat v_diff For the RR mice, the number of visits to the Mus-scented tunnel (M = 23.44, s = 8.51) did not differ significantly from the number of visits to the Rattus-scented tunnel (M = 24.75, s = 8.10), t(15) = 0.62, p =.54, d =.. Notice that house mice reared with house mice or with deer mice avoided the rat-scented tunnels, but those reared with rats did not. Avoiding the scent of rat makes a lot of sense when you consider that rats eat mice. proc corr nosimple; var V_Mus; with V_rat; by nurs; run; We need these correlations to run Algina s code for computing d with confidence intervals. The CORR Procedure nurs=mm 1 With Variables: v_rat 1 Variables: v_mus Pearson Correlation Coefficients, N = Prob > r under H0: Rho=0 v_mus v_rat

4 nurs=mr 1 With Variables: v_rat 1 Variables: v_mus Pearson Correlation Coefficients, N = Prob > r under H0: Rho=0 v_mus v_rat nurs=rr 1 With Variables: v_rat 1 Variables: v_mus Pearson Correlation Coefficients, N = Prob > r under H0: Rho=0 v_mus v_rat Data CI2; m1= ; m2= ; s1= ; s2= ; r= ; n= ; prob=.95 ; v1=s1**2;

5 v2=s2**2; s12=s1*s2*r; se=sqrt((v1+v2-2*s12)/n); pvar=(v1+v2)/2; nchat=(m1-m2)/se; es=(m1-m2)/(sqrt(pvar)); df=n-1; ncu=tnonct(nchat,df,(1-prob)/2); ncl=tnonct(nchat,df,1-(1-prob)/2); ul=se*ncu/(sqrt(pvar)); ll=se*ncl/(sqrt(pvar)); output; proc print; title1 'll is the lower limit and ul is the upper limit'; title2 'of a confidence interval for the effect size'; title3 'MM group only' ; var es ll ul ; run; ll is the lower limit and ul is the upper limit of a confidence interval for the effect size MM group only Obs es ll ul House mice who had been reared with house mice visited the tunnels scented with house mouse significantly more often (M = 22.44, SD = 12.81) than tunnels scented with rat (M = 7.56, SD = 5.89), t(15) = 5.64, p <.001, d = 1.49, 95% CI [.74, 2.22]. Independent Samples T-Tests on Mouse-Rat Tunnel Difference Scores Foster Mom is a Mouse or is a Rat data Mus2; set Mus; if nurs NE 'RR' then Mom = 'Mouse'; else if nurs = 'RR' then Mom = 'Rat'; proc ttest; class Mom; var v_diff; run; *proc mixed; *class Mom; *model v_diff = Mom / ddfm = satterth; *repeated / group=mom; *lsmeans Mom / pdiff CL; *run;

6 title2 'Foster Mom is a Mouse, Pups Exposed to Rat Scent (MR) or Not (MM)'; run; Independent Samples T-Tests on Mouse-Rat Tunnel Difference Scores Foster Mom is a Mouse or is a Rat The TTEST Procedure Variable: v_diff The dependent variable here is a measure of preference for visiting the Mus-scented tunnel rather than the Rattus-scented tunnel. Mom N Mean Std Dev Std Err Minimum Maximum Mouse Rat Diff (1-2) Mom Method Mean 95% CL Mean Std Dev 95% CL Std Dev Mouse Rat Diff (1-2) Pooled Diff (1-2) Satterthwaite Method Variances DF t Value Pr > t Pooled Equal Satterthwaite Unequal Equality of Variances Method Num DF Den DF F Value Pr > F Folded F

7 data CI3; t= 5.96 ; df = 46 ; n1 = 32 ; n2 = ; ***********************************************************************************; d = t/sqrt(n1*n2/(n1+n2)); ncp_lower = TNONCT(t,df,.975); ncp_upper = TNONCT(t,df,.025); d_lower = ncp_lower*sqrt((n1+n2)/(n1*n2)); d_upper = ncp_upper*sqrt((n1+n2)/(n1*n2)); output; run; proc print; var d d_lower d_upper; run; Obs d d_lower d_upper Mice that had been fostered onto a mouse mother had a significantly stronger preference for visiting mouse-scented rather than rat-scented tunnels (M = 14.81, SD = 9.03) than did mice who had been fostered onto a rat mother (M = -1.31, SD = 8.40), t(32.1) = 6.11, p <.001, d = 1.82, 95% CI [1.11, 2.52]. The graphics provided by SAS in the htm output can be very helpful with respect to evaluating the normality assumption. For each group we get a histogram overlaid with 1.) a smoothed curve representing the distribution of the observed scores, and 2.) a normal curve with the same mean and standard deviation of the observed scores.

8 data Mus3; set Mus; if nurs NE 'RR'; proc ttest; class nurs; var v_diff; run; Independent Samples T-Tests on Mouse-Rat Tunnel Difference Scores Foster Mom is a Mouse, Pups Exposed to Rat Scent (MR) or Not (MM) Variable: v_diff nurs N Mean Std Dev Std Err Minimum Maximum MM MR Diff (1-2) nurs Method Mean 95% CL Mean Std Dev 95% CL Std Dev MM MR Diff (1-2) Pooled Diff (1-2) Satterthwaite Method Variances DF t Value Pr > t Pooled Equal Satterthwaite Unequal Method Equality of Variances Num DF Den DF F Value Pr > F Folded F The sample sizes are equal and the ratio of the larger variance to the smaller variance less than 4, so I employ the pooled variances t test.

9 Preference for the Mus-scented tunnel for the MM mice (M = 14.88, s = 10.55, n = ) did not differ significantly from that for the MR mice (M = 14.75, s = 7.57, n = ), t(30) = 0.04, p =.97, d =.01, 95% CI [-.68,.71] Independent t on WTLOSS Data data wtloss; input program $ ; cards; A 25 A 21 A 18 A 20 A 22 A 30 B 15 B 17 B 9 B 12 B 11 B 19 B 14 B 18 B B 10 B 5 B 13 proc ttest; class program; var loss; run; program N Mean Std Dev Std Err Minimum Maximum A B Diff (1-2) program Method Mean 95% CL Mean Std Dev 95% CL Std Dev A B Diff (1-2) Pooled Diff (1-2) Satterthwaite Method Variances DF t Value Pr > t Pooled Equal Satterthwaite Unequal Equality of Variances Method Num DF Den DF F Value Pr > F Folded F

10 data CI4; t= 4.54 ; df = ; n1 = 6 ; n2 = 12 ; ***********************************************************************************; d = t/sqrt(n1*n2/(n1+n2)); ncp_lower = TNONCT(t,df,.975); ncp_upper = TNONCT(t,df,.025); d_lower = ncp_lower*sqrt((n1+n2)/(n1*n2)); d_upper = ncp_upper*sqrt((n1+n2)/(n1*n2)); output; run; proc print; var d d_lower d_upper; run; Obs d d_lower d_upper Participants who completed the Marine Corps weight loss program (M = 22.67, s = 4.27, n = 6) lost significantly more weight than those who completed the Boy Scouts weight loss program (M = 13.25, s = 4.09, n = 12), t(9.7) = 4.47, p =.001, d = 2.27, 95% CI [1.00, 3.50]. When considering these results, one must question how the selective attrition might have affected the means. Perhaps weight loss was greater in Program A simply because Program A was more effective in chasing off those who were not losing weight. options pageno=min nodate formdlim='-'; proc format; value bk 0='Kerry' 1='Bush'; run; title 'Income, IQ, and Presidential Voting'; run; data Voting; infile 'C:\D\StatData\Bush-Kerry2004.txt'; input IQ state $ income vote candidate $; format vote bk. ; proc corr; var vote iq income; run; proc ttest; class vote; var iq income; run; Data CI; t= 2.61 ; df = 49 ; n1 = 20 ; n2 =31 ; d = t/sqrt(n1*n2/(n1+n2));

11 ncp_lower = TNONCT(t,df,.975); ncp_upper = TNONCT(t,df,.025); d_lower = ncp_lower*sqrt((n1+n2)/(n1*n2)); d_upper = ncp_upper*sqrt((n1+n2)/(n1*n2)); output; run; proc print; var d d_lower d_upper; run; Obs d d_lower d_upper Income, IQ, and Presidential Voting options pageno=min nodate formdlim='-'; proc format; value bk 0='Kerry' 1='Bush'; run; title 'Income, IQ, and Presidential Voting'; run; data Voting; infile 'F:\StatData\Bush-Kerry2004.txt'; input IQ state $ income vote candidate $; format vote bk. ; proc corr; var vote iq income; run; proc ttest; class vote; var iq income; run; The CORR Procedure 3 Variables: vote IQ income Simple Statistics Variable N Mean Std Dev Sum Minimum Maximum vote IQ income For the vote variable, 0 coded the state voting for Kerry, 1 coded the state voting for Bush.

12 Pearson Correlation Coefficients, N = 51 Prob > r under H0: Rho=0 vote IQ income vote IQ income There are two significant correlations in the matrix above. Voting for Bush is negatively correlated with average IQ and average income in the state. We can test the null hypothesis that the correlation between voting preference and IQ is zero this way: t r n 2 1 r The obtained value of t will be identical to that for the pooled t test. The TTEST Procedure Variable: IQ vote N Mean Std Dev Std Err Minimum Maximum Kerry Bush Diff (1-2)

13 vote Method Mean 95% CL Mean Std Dev 95% CL Std Dev Kerry Bush Diff (1-2) Pooled Diff (1-2) Satterthwaite Method Variances DF t Value Pr > t Pooled Equal Satterthwaite Unequal Method Equality of Variances Num DF Den DF F Value Pr > F Folded F The estimated mean IQ of residents of states which voted for Kerry (M = 101.0, s = 1.99, n = 20) was significantly higher than that of states which voted for Bush (M = 99.3, s = 2.42, n = 32), t(46.1) = 2.71, p =.009, d =.75, 95% CI [., 1.33]. One could use the point biserial r as the effect size estimator here, or its square (which can be interpreted as a proportion of variance in IQ explained by the model). The value of that r here is Variable: income vote N Mean Std Dev Std Err Minimum Maximum Kerry Bush Diff (1-2)

14 vote Method Mean 95% CL Mean Std Dev 95% CL Std Dev Kerry Bush Diff (1-2) Pooled Diff (1-2) Satterthwaite Method Variances DF t Value Pr > t Pooled Equal Satterthwaite Unequal Method Equality of Variances Num DF Den DF F Value Pr > F Folded F Average income in states voting for Kerry (M = $34,672, s = $5,002), n = 20) was significantly greater than that in states voting for Bush (M = $28,333, s = $2,879, n = 31), t(27.2) = 5.14, p <.001, d = 1.65, 95% CI [.99, 2.29].

The SAS System 11:03 Monday, November 11,

The SAS System 11:03 Monday, November 11, The SAS System 11:3 Monday, November 11, 213 1 The CONTENTS Procedure Data Set Name BIO.AUTO_PREMIUMS Observations 5 Member Type DATA Variables 3 Engine V9 Indexes Created Monday, November 11, 213 11:4:19

More information

22S:105 Statistical Methods and Computing. Two independent sample problems. Goal of inference: to compare the characteristics of two different

22S:105 Statistical Methods and Computing. Two independent sample problems. Goal of inference: to compare the characteristics of two different 22S:105 Statistical Methods and Computing Two independent-sample t-tests Lecture 17 Apr. 5, 2013 1 2 Two independent sample problems Goal of inference: to compare the characteristics of two different populations

More information

GGraph. Males Only. Premium. Experience. GGraph. Gender. 1 0: R 2 Linear = : R 2 Linear = Page 1

GGraph. Males Only. Premium. Experience. GGraph. Gender. 1 0: R 2 Linear = : R 2 Linear = Page 1 GGraph 9 Gender : R Linear =.43 : R Linear =.769 8 7 6 5 4 3 5 5 Males Only GGraph Page R Linear =.43 R Loess 9 8 7 6 5 4 5 5 Explore Case Processing Summary Cases Valid Missing Total N Percent N Percent

More information

Analysis Variable : Y Analysis Variable : Y E

Analysis Variable : Y Analysis Variable : Y E Here is the output from the SAS program in the document Skewness, Kurtosis, and the Normal Curve *g1g2.sas; data EDA; infile 'C:\Users\Vati\Documents\StatData\EDA.dat'; input Y; proc means mean skewness

More information

The FREQ Procedure. Table of Sex by Gym Sex(Sex) Gym(Gym) No Yes Total Male Female Total

The FREQ Procedure. Table of Sex by Gym Sex(Sex) Gym(Gym) No Yes Total Male Female Total Jenn Selensky gathered data from students in an introduction to psychology course. The data are weights, sex/gender, and whether or not the student worked-out in the gym. Here is the output from a 2 x

More information

SAS Simple Linear Regression Example

SAS Simple Linear Regression Example SAS Simple Linear Regression Example This handout gives examples of how to use SAS to generate a simple linear regression plot, check the correlation between two variables, fit a simple linear regression

More information

Repo Market and Market Repo Rate as a Collateralized Benchmark Rate 1

Repo Market and Market Repo Rate as a Collateralized Benchmark Rate 1 Repo Market and Market Repo Rate as a Collateralized Benchmark Rate 1 Golaka C Nath 2 1. Introduction 2. Repo Market Structure Collateralized markets have grown significantly over the years and surpassed

More information

Valid Missing Total. N Percent N Percent N Percent , ,0% 0,0% 2 100,0% 1, ,0% 0,0% 2 100,0% 2, ,0% 0,0% 5 100,0%

Valid Missing Total. N Percent N Percent N Percent , ,0% 0,0% 2 100,0% 1, ,0% 0,0% 2 100,0% 2, ,0% 0,0% 5 100,0% dimension1 GET FILE= validacaonestscoremédico.sav' (só com os 59 doentes) /COMPRESSED. SORT CASES BY UMcpEVA (D). EXAMINE VARIABLES=UMcpEVA BY NoRespostasSignif /PLOT BOXPLOT HISTOGRAM NPPLOT /COMPARE

More information

EXST7015: Multiple Regression from Snedecor & Cochran (1967) RAW DATA LISTING

EXST7015: Multiple Regression from Snedecor & Cochran (1967) RAW DATA LISTING Multiple (Linear) Regression Introductory example Page 1 1 options ps=256 ls=132 nocenter nodate nonumber; 3 DATA ONE; 4 TITLE1 ''; 5 INPUT X1 X2 X3 Y; 6 **** LABEL Y ='Plant available phosphorus' 7 X1='Inorganic

More information

Point-Biserial and Biserial Correlations

Point-Biserial and Biserial Correlations Chapter 302 Point-Biserial and Biserial Correlations Introduction This procedure calculates estimates, confidence intervals, and hypothesis tests for both the point-biserial and the biserial correlations.

More information

Hypothesis Tests: One Sample Mean Cal State Northridge Ψ320 Andrew Ainsworth PhD

Hypothesis Tests: One Sample Mean Cal State Northridge Ψ320 Andrew Ainsworth PhD Hypothesis Tests: One Sample Mean Cal State Northridge Ψ320 Andrew Ainsworth PhD MAJOR POINTS Sampling distribution of the mean revisited Testing hypotheses: sigma known An example Testing hypotheses:

More information

Dummy variables 9/22/2015. Are wages different across union/nonunion jobs. Treatment Control Y X X i identifies treatment

Dummy variables 9/22/2015. Are wages different across union/nonunion jobs. Treatment Control Y X X i identifies treatment Dummy variables Treatment 22 1 1 Control 3 2 Y Y1 0 1 2 Y X X i identifies treatment 1 1 1 1 1 1 0 0 0 X i =1 if in treatment group X i =0 if in control H o : u n =u u Are wages different across union/nonunion

More information

Final Exam - section 1. Thursday, December hours, 30 minutes

Final Exam - section 1. Thursday, December hours, 30 minutes Econometrics, ECON312 San Francisco State University Michael Bar Fall 2013 Final Exam - section 1 Thursday, December 19 1 hours, 30 minutes Name: Instructions 1. This is closed book, closed notes exam.

More information

FNCE 4030 Fall 2012 Roberto Caccia, Ph.D. Midterm_2a (2-Nov-2012) Your name:

FNCE 4030 Fall 2012 Roberto Caccia, Ph.D. Midterm_2a (2-Nov-2012) Your name: Answer the questions in the space below. Written answers require no more than few compact sentences to show you understood and master the concept. Show your work to receive partial credit. Points are as

More information

Handout seminar 6, ECON4150

Handout seminar 6, ECON4150 Handout seminar 6, ECON4150 Herman Kruse March 17, 2013 Introduction - list of commands This week, we need a couple of new commands in order to solve all the problems. hist var1 if var2, options - creates

More information

Rationale. Learning about return and risk from the historical record and beta estimation. T Bills and Inflation

Rationale. Learning about return and risk from the historical record and beta estimation. T Bills and Inflation Learning about return and risk from the historical record and beta estimation Reference: Investments, Bodie, Kane, and Marcus, and Investment Analysis and Behavior, Nofsinger and Hirschey Nattawut Jenwittayaroje,

More information

Topic 8: Model Diagnostics

Topic 8: Model Diagnostics Topic 8: Model Diagnostics Outline Diagnostics to check model assumptions Diagnostics concerning X Diagnostics using the residuals Diagnostics and remedial measures Diagnostics: look at the data to diagnose

More information

Chapter 6 Part 3 October 21, Bootstrapping

Chapter 6 Part 3 October 21, Bootstrapping Chapter 6 Part 3 October 21, 2008 Bootstrapping From the internet: The bootstrap involves repeated re-estimation of a parameter using random samples with replacement from the original data. Because the

More information

SPSS t tests (and NP Equivalent)

SPSS t tests (and NP Equivalent) SPSS t tests (and NP Equivalent) Descriptive Statistics To get all the descriptive statistics you need: Analyze > Descriptive Statistics>Explore. Enter the IV into the Factor list and the DV into the Dependent

More information

tm / / / / / / / / / / / / Statistics/Data Analysis User: Klick Project: Limited Dependent Variables{space -6}

tm / / / / / / / / / / / / Statistics/Data Analysis User: Klick Project: Limited Dependent Variables{space -6} PS 4 Monday August 16 01:00:42 2010 Page 1 tm / / / / / / / / / / / / Statistics/Data Analysis User: Klick Project: Limited Dependent Variables{space -6} log: C:\web\PS4log.smcl log type: smcl opened on:

More information

The instructions on this page also work for the TI-83 Plus and the TI-83 Plus Silver Edition.

The instructions on this page also work for the TI-83 Plus and the TI-83 Plus Silver Edition. The instructions on this page also work for the TI-83 Plus and the TI-83 Plus Silver Edition. The position of the graphically represented keys can be found by moving your mouse on top of the graphic. Turn

More information

Key Objectives. Module 2: The Logic of Statistical Inference. Z-scores. SGSB Workshop: Using Statistical Data to Make Decisions

Key Objectives. Module 2: The Logic of Statistical Inference. Z-scores. SGSB Workshop: Using Statistical Data to Make Decisions SGSB Workshop: Using Statistical Data to Make Decisions Module 2: The Logic of Statistical Inference Dr. Tom Ilvento January 2006 Dr. Mugdim Pašić Key Objectives Understand the logic of statistical inference

More information

Two-Sample T-Test for Superiority by a Margin

Two-Sample T-Test for Superiority by a Margin Chapter 219 Two-Sample T-Test for Superiority by a Margin Introduction This procedure provides reports for making inference about the superiority of a treatment mean compared to a control mean from data

More information

The Normal Distribution & Descriptive Statistics. Kin 304W Week 2: Jan 15, 2012

The Normal Distribution & Descriptive Statistics. Kin 304W Week 2: Jan 15, 2012 The Normal Distribution & Descriptive Statistics Kin 304W Week 2: Jan 15, 2012 1 Questionnaire Results I received 71 completed questionnaires. Thank you! Are you nervous about scientific writing? You re

More information

. ********** OUTPUT FILE: CARD & KRUEGER (1994)***********.. * STATA 10.0 CODE. * copyright C 2008 by Tito Boeri & Jan van Ours. * "THE ECONOMICS OF

. ********** OUTPUT FILE: CARD & KRUEGER (1994)***********.. * STATA 10.0 CODE. * copyright C 2008 by Tito Boeri & Jan van Ours. * THE ECONOMICS OF ********** OUTPUT FILE: CARD & KRUEGER (1994)*********** * STATA 100 CODE * copyright C 2008 by Tito Boeri & Jan van Ours * "THE ECONOMICS OF IMPERFECT LABOR MARKETS" * by Tito Boeri & Jan van Ours (2008)

More information

Two-Sample T-Test for Non-Inferiority

Two-Sample T-Test for Non-Inferiority Chapter 198 Two-Sample T-Test for Non-Inferiority Introduction This procedure provides reports for making inference about the non-inferiority of a treatment mean compared to a control mean from data taken

More information

Statistical Models of Stocks and Bonds. Zachary D Easterling: Department of Economics. The University of Akron

Statistical Models of Stocks and Bonds. Zachary D Easterling: Department of Economics. The University of Akron Statistical Models of Stocks and Bonds Zachary D Easterling: Department of Economics The University of Akron Abstract One of the key ideas in monetary economics is that the prices of investments tend to

More information

Cameron ECON 132 (Health Economics): FIRST MIDTERM EXAM (A) Fall 17

Cameron ECON 132 (Health Economics): FIRST MIDTERM EXAM (A) Fall 17 Cameron ECON 132 (Health Economics): FIRST MIDTERM EXAM (A) Fall 17 Answer all questions in the space provided on the exam. Total of 36 points (and worth 22.5% of final grade). Read each question carefully,

More information

Normal populations. Lab 9: Normal approximations for means STT 421: Summer, 2004 Vince Melfi

Normal populations. Lab 9: Normal approximations for means STT 421: Summer, 2004 Vince Melfi Lab 9: Normal approximations for means STT 421: Summer, 2004 Vince Melfi In previous labs where we investigated the distribution of the sample mean and sample proportion, we often noticed that the distribution

More information

Random Effects ANOVA

Random Effects ANOVA Random Effects ANOVA Grant B. Morgan Baylor University This post contains code for conducting a random effects ANOVA. Make sure the following packages are installed: foreign, lme4, lsr, lattice. library(foreign)

More information

Question scores. Question 1a 1b 1c 1d 1e 2a 2b 2c 2d 2e 2f 3a 3b 3c 3d M ult:choice Points

Question scores. Question 1a 1b 1c 1d 1e 2a 2b 2c 2d 2e 2f 3a 3b 3c 3d M ult:choice Points Economics 02: Analysis of Economic Data Cameron Winter 204 January 30 Department of Economics, U.C.-Davis First Midterm Exam (Version A) Compulsory. Closed book. Total of 30 points and worth 22.5% of course

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

Advanced Financial Modeling. Unit 2

Advanced Financial Modeling. Unit 2 Advanced Financial Modeling Unit 2 Financial Modeling for Risk Management A Portfolio with 2 assets A portfolio with 3 assets Risk Modeling in a multi asset portfolio Monte Carlo Simulation Two Asset Portfolio

More information

(ii) Give the name of the California website used to find the various insurance plans offered under the Affordable care Act (Obamacare).

(ii) Give the name of the California website used to find the various insurance plans offered under the Affordable care Act (Obamacare). Cameron ECON 132 (Health Economics): FIRST MIDTERM EXAM (A) Winter 18 Answer all questions in the space provided on the exam. Total of 36 points (and worth 22.5% of final grade). Read each question carefully,

More information

The relationship between GDP, labor force and health expenditure in European countries

The relationship between GDP, labor force and health expenditure in European countries Econometrics-Term paper The relationship between GDP, labor force and health expenditure in European countries Student: Nguyen Thu Ha Contents 1. Background:... 2 2. Discussion:... 2 3. Regression equation

More information

Data screening, transformations: MRC05

Data screening, transformations: MRC05 Dale Berger Data screening, transformations: MRC05 This is a demonstration of data screening and transformations for a regression analysis. Our interest is in predicting current salary from education level

More information

SPSS Reliability Example

SPSS Reliability Example Psy 495 Psychological Measurement, Spring 2017 1 SPSS Reliability Example Menus To obtain descriptive statistics, such as mean, variance, skew, and kurtosis. Analyze Descriptive Statistics Descriptives

More information

Financial Econometrics Jeffrey R. Russell Midterm 2014

Financial Econometrics Jeffrey R. Russell Midterm 2014 Name: Financial Econometrics Jeffrey R. Russell Midterm 2014 You have 2 hours to complete the exam. Use can use a calculator and one side of an 8.5x11 cheat sheet. Try to fit all your work in the space

More information

proc genmod; model malform/total = alcohol / dist=bin link=identity obstats; title 'Table 2.7'; title2 'Identity Link';

proc genmod; model malform/total = alcohol / dist=bin link=identity obstats; title 'Table 2.7'; title2 'Identity Link'; BIOS 6244 Analysis of Categorical Data Assignment 5 s 1. Consider Exercise 4.4, p. 98. (i) Write the SAS code, including the DATA step, to fit the linear probability model and the logit model to the data

More information

Empirical Rule (P148)

Empirical Rule (P148) Interpreting the Standard Deviation Numerical Descriptive Measures for Quantitative data III Dr. Tom Ilvento FREC 408 We can use the standard deviation to express the proportion of cases that might fall

More information

MUMBAI INTER-BANK OVERNIGHT RATE (MIBOR)

MUMBAI INTER-BANK OVERNIGHT RATE (MIBOR) MUMBAI INTER-BANK OVERNIGHT RATE (MIBOR) Benchmark Calculation and Methodology Golaka C Nath 1 MIBOR - A Short History FIMMDA-NSE MIBID-MIBOR Financial benchmarks refer to prices, estimates, rates, indices

More information

Lecture Slides. Elementary Statistics Twelfth Edition. by Mario F. Triola. and the Triola Statistics Series. Section 7.4-1

Lecture Slides. Elementary Statistics Twelfth Edition. by Mario F. Triola. and the Triola Statistics Series. Section 7.4-1 Lecture Slides Elementary Statistics Twelfth Edition and the Triola Statistics Series by Mario F. Triola Section 7.4-1 Chapter 7 Estimates and Sample Sizes 7-1 Review and Preview 7- Estimating a Population

More information

Chapter 11 : Model checking and refinement An example: Blood-brain barrier study on rats

Chapter 11 : Model checking and refinement An example: Blood-brain barrier study on rats EXST3201 Chapter 11b Geaghan Fall 2005: Page 1 Chapter 11 : Model checking and refinement An example: Blood-brain barrier study on rats This study investigates the permeability of the blood-brain barrier

More information

iskills & Proficiency Profile (PP) Report

iskills & Proficiency Profile (PP) Report 1 iskills & Proficiency Profile (PP) Report Descriptive Statistics & Correlations Report Submitted: Aug 17, 2011 Perry Deess, Director, Institutional Research & Planning orbert Elliot, Chair, Middle States

More information

ARIMA ANALYSIS WITH INTERVENTIONS / OUTLIERS

ARIMA ANALYSIS WITH INTERVENTIONS / OUTLIERS TASK Run intervention analysis on the price of stock M: model a function of the price as ARIMA with outliers and interventions. SOLUTION The document below is an abridged version of the solution provided

More information

FV N = PV (1+ r) N. FV N = PVe rs * N 2011 ELAN GUIDES 3. The Future Value of a Single Cash Flow. The Present Value of a Single Cash Flow

FV N = PV (1+ r) N. FV N = PVe rs * N 2011 ELAN GUIDES 3. The Future Value of a Single Cash Flow. The Present Value of a Single Cash Flow QUANTITATIVE METHODS The Future Value of a Single Cash Flow FV N = PV (1+ r) N The Present Value of a Single Cash Flow PV = FV (1+ r) N PV Annuity Due = PVOrdinary Annuity (1 + r) FV Annuity Due = FVOrdinary

More information

Chapter 11 Part 6. Correlation Continued. LOWESS Regression

Chapter 11 Part 6. Correlation Continued. LOWESS Regression Chapter 11 Part 6 Correlation Continued LOWESS Regression February 17, 2009 Goal: To review the properties of the correlation coefficient. To introduce you to the various tools that can be used to decide

More information

Review: Chebyshev s Rule. Measures of Dispersion II. Review: Empirical Rule. Review: Empirical Rule. Auto Batteries Example, p 59.

Review: Chebyshev s Rule. Measures of Dispersion II. Review: Empirical Rule. Review: Empirical Rule. Auto Batteries Example, p 59. Review: Chebyshev s Rule Measures of Dispersion II Tom Ilvento STAT 200 Is based on a mathematical theorem for any data At least ¾ of the measurements will fall within ± 2 standard deviations from the

More information

Topic 30: Random Effects Modeling

Topic 30: Random Effects Modeling Topic 30: Random Effects Modeling Outline One-way random effects model Data Model Inference Data for one-way random effects model Y, the response variable Factor with levels i = 1 to r Y ij is the j th

More information

LAB NOTES: EXAMPLES OF PRELIS RUNS

LAB NOTES: EXAMPLES OF PRELIS RUNS LAB NOTES: EXAMPLES OF PRELIS RUNS PRELIS 2 is a data preprocessor for processing data in preparation for estimating a structural equation model in LISREL 8 or 9. For information on reading data into PRELIS,

More information

Analysis of 2x2 Cross-Over Designs using T-Tests for Non-Inferiority

Analysis of 2x2 Cross-Over Designs using T-Tests for Non-Inferiority Chapter 235 Analysis of 2x2 Cross-Over Designs using -ests for Non-Inferiority Introduction his procedure analyzes data from a two-treatment, two-period (2x2) cross-over design where the goal is to demonstrate

More information

Fall 2004 Social Sciences 7418 University of Wisconsin-Madison Problem Set 5 Answers

Fall 2004 Social Sciences 7418 University of Wisconsin-Madison Problem Set 5 Answers Economics 310 Menzie D. Chinn Fall 2004 Social Sciences 7418 University of Wisconsin-Madison Problem Set 5 Answers This problem set is due in lecture on Wednesday, December 15th. No late problem sets will

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

Establishing a framework for statistical analysis via the Generalized Linear Model

Establishing a framework for statistical analysis via the Generalized Linear Model PSY349: Lecture 1: INTRO & CORRELATION Establishing a framework for statistical analysis via the Generalized Linear Model GLM provides a unified framework that incorporates a number of statistical methods

More information

Two Hours. Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER. 22 January :00 16:00

Two Hours. Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER. 22 January :00 16:00 Two Hours MATH38191 Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER STATISTICAL MODELLING IN FINANCE 22 January 2015 14:00 16:00 Answer ALL TWO questions

More information

New SAS Procedures for Analysis of Sample Survey Data

New SAS Procedures for Analysis of Sample Survey Data New SAS Procedures for Analysis of Sample Survey Data Anthony An and Donna Watts, SAS Institute Inc, Cary, NC Abstract Researchers use sample surveys to obtain information on a wide variety of issues Many

More information

Chapter 11: Inference for Distributions Inference for Means of a Population 11.2 Comparing Two Means

Chapter 11: Inference for Distributions Inference for Means of a Population 11.2 Comparing Two Means Chapter 11: Inference for Distributions 11.1 Inference for Means of a Population 11.2 Comparing Two Means 1 Population Standard Deviation In the previous chapter, we computed confidence intervals and performed

More information

9. Appendixes. Page 73 of 95

9. Appendixes. Page 73 of 95 9. Appendixes Appendix A: Construction cost... 74 Appendix B: Cost of capital... 75 Appendix B.1: Beta... 75 Appendix B.2: Cost of equity... 77 Appendix C: Geometric Brownian motion... 78 Appendix D: Static

More information

The Two-Sample Independent Sample t Test

The Two-Sample Independent Sample t Test Department of Psychology and Human Development Vanderbilt University 1 Introduction 2 3 The General Formula The Equal-n Formula 4 5 6 Independence Normality Homogeneity of Variances 7 Non-Normality Unequal

More information

Homework 0 Key (not to be handed in) due? Jan. 10

Homework 0 Key (not to be handed in) due? Jan. 10 Homework 0 Key (not to be handed in) due? Jan. 10 The results of running diamond.sas is listed below: Note: I did slightly reduce the size of some of the graphs so that they would fit on the page. The

More information

Your Name (Please print) Did you agree to take the optional portion of the final exam Yes No. Directions

Your Name (Please print) Did you agree to take the optional portion of the final exam Yes No. Directions Your Name (Please print) Did you agree to take the optional portion of the final exam Yes No (Your online answer will be used to verify your response.) Directions There are two parts to the final exam.

More information

Simple Descriptive Statistics

Simple Descriptive Statistics Simple Descriptive Statistics These are ways to summarize a data set quickly and accurately The most common way of describing a variable distribution is in terms of two of its properties: Central tendency

More information

Midterm Exam. b. What are the continuously compounded returns for the two stocks?

Midterm Exam. b. What are the continuously compounded returns for the two stocks? University of Washington Fall 004 Department of Economics Eric Zivot Economics 483 Midterm Exam This is a closed book and closed note exam. However, you are allowed one page of notes (double-sided). Answer

More information

Question 1a 1b 1c 1d 1e 1f 2a 2b 2c 2d 3a 3b 3c 3d M ult:choice Points

Question 1a 1b 1c 1d 1e 1f 2a 2b 2c 2d 3a 3b 3c 3d M ult:choice Points Economics 102: Analysis of Economic Data Cameron Spring 2015 April 23 Department of Economics, U.C.-Davis First Midterm Exam (Version A) Compulsory. Closed book. Total of 30 points and worth 22.5% of course

More information

Chapter 7 Sampling Distributions and Point Estimation of Parameters

Chapter 7 Sampling Distributions and Point Estimation of Parameters Chapter 7 Sampling Distributions and Point Estimation of Parameters Part 1: Sampling Distributions, the Central Limit Theorem, Point Estimation & Estimators Sections 7-1 to 7-2 1 / 25 Statistical Inferences

More information

1. Distinguish three missing data mechanisms:

1. Distinguish three missing data mechanisms: 1 DATA SCREENING I. Preliminary inspection of the raw data make sure that there are no obvious coding errors (e.g., all values for the observed variables are in the admissible range) and that all variables

More information

Problem Set 6 ANSWERS

Problem Set 6 ANSWERS Economics 20 Part I. Problem Set 6 ANSWERS Prof. Patricia M. Anderson The first 5 questions are based on the following information: Suppose a researcher is interested in the effect of class attendance

More information

Overview/Outline. Moving beyond raw data. PSY 464 Advanced Experimental Design. Describing and Exploring Data The Normal Distribution

Overview/Outline. Moving beyond raw data. PSY 464 Advanced Experimental Design. Describing and Exploring Data The Normal Distribution PSY 464 Advanced Experimental Design Describing and Exploring Data The Normal Distribution 1 Overview/Outline Questions-problems? Exploring/Describing data Organizing/summarizing data Graphical presentations

More information

Rationale Reference Nattawut Jenwittayaroje, Ph.D., CFA Expected Return and Standard Deviation Example: Ending Price =

Rationale Reference Nattawut Jenwittayaroje, Ph.D., CFA Expected Return and Standard Deviation Example: Ending Price = Rationale Lecture 4: Learning about return and risk from the historical record Reference: Investments, Bodie, Kane, and Marcus, and Investment Analysis and Behavior, Nofsinger and Hirschey Nattawut Jenwittayaroje,

More information

The data definition file provided by the authors is reproduced below: Obs: 1500 home sales in Stockton, CA from Oct 1, 1996 to Nov 30, 1998

The data definition file provided by the authors is reproduced below: Obs: 1500 home sales in Stockton, CA from Oct 1, 1996 to Nov 30, 1998 Economics 312 Sample Project Report Jeffrey Parker Introduction This project is based on Exercise 2.12 on page 81 of the Hill, Griffiths, and Lim text. It examines how the sale price of houses in Stockton,

More information

book 2014/5/6 15:21 page 261 #285

book 2014/5/6 15:21 page 261 #285 book 2014/5/6 15:21 page 261 #285 Chapter 10 Simulation Simulations provide a powerful way to answer questions and explore properties of statistical estimators and procedures. In this chapter, we will

More information

1 Inferential Statistic

1 Inferential Statistic 1 Inferential Statistic Population versus Sample, parameter versus statistic A population is the set of all individuals the researcher intends to learn about. A sample is a subset of the population and

More information

10/1/2012. PSY 511: Advanced Statistics for Psychological and Behavioral Research 1

10/1/2012. PSY 511: Advanced Statistics for Psychological and Behavioral Research 1 PSY 511: Advanced Statistics for Psychological and Behavioral Research 1 Pivotal subject: distributions of statistics. Foundation linchpin important crucial You need sampling distributions to make inferences:

More information

Solutions for Session 5: Linear Models

Solutions for Session 5: Linear Models Solutions for Session 5: Linear Models 30/10/2018. do solution.do. global basedir http://personalpages.manchester.ac.uk/staff/mark.lunt. global datadir $basedir/stats/5_linearmodels1/data. use $datadir/anscombe.

More information

Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly.

Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly. Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly. The MEANS Procedure Variable Mean Std Dev Minimum Maximum Skewness ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ

More information

Example 1 of econometric analysis: the Market Model

Example 1 of econometric analysis: the Market Model Example 1 of econometric analysis: the Market Model IGIDR, Bombay 14 November, 2008 The Market Model Investors want an equation predicting the return from investing in alternative securities. Return is

More information

Econometrics is. The estimation of relationships suggested by economic theory

Econometrics is. The estimation of relationships suggested by economic theory Econometrics is Econometrics is The estimation of relationships suggested by economic theory Econometrics is The estimation of relationships suggested by economic theory The application of mathematical

More information

Modeling Panel Data: Choosing the Correct Strategy. Roberto G. Gutierrez

Modeling Panel Data: Choosing the Correct Strategy. Roberto G. Gutierrez Modeling Panel Data: Choosing the Correct Strategy Roberto G. Gutierrez 2 / 25 #analyticsx Overview Panel data are ubiquitous in not only economics, but in all fields Panel data have intrinsic modeling

More information

Time series data: Part 2

Time series data: Part 2 Plot of Epsilon over Time -- Case 1 1 Time series data: Part Epsilon - 1 - - - -1 1 51 7 11 1 151 17 Time period Plot of Epsilon over Time -- Case Plot of Epsilon over Time -- Case 3 1 3 1 Epsilon - Epsilon

More information

Regression Review and Robust Regression. Slides prepared by Elizabeth Newton (MIT)

Regression Review and Robust Regression. Slides prepared by Elizabeth Newton (MIT) Regression Review and Robust Regression Slides prepared by Elizabeth Newton (MIT) S-Plus Oil City Data Frame Monthly Excess Returns of Oil City Petroleum, Inc. Stocks and the Market SUMMARY: The oilcity

More information

Lampiran 1 Lampiran 1 Data Keuangan Bank konvensional

Lampiran 1 Lampiran 1 Data Keuangan Bank konvensional Lampiran 1 Lampiran 1 Data Keuangan Bank konvensional BANK YEAR Z-Score TOTAL ASET (milyar rupiah) ROA (%) NPL (%) BI RATE (%) KURS (rupiah) BNI 1.9 5.51.9 1.9.5 919.5 11 7.71 99.5.9.17 915.7 1 7.7 333.3.9.

More information

Statistics for Business and Economics

Statistics for Business and Economics Statistics for Business and Economics Chapter 7 Estimation: Single Population Copyright 010 Pearson Education, Inc. Publishing as Prentice Hall Ch. 7-1 Confidence Intervals Contents of this chapter: Confidence

More information

LAMPIRAN PERHITUNGAN EVIEWS

LAMPIRAN PERHITUNGAN EVIEWS LAMPIRAN PERHITUNGAN EVIEWS DESCRIPTIVE PK PDRB TP TKM Mean 12.22450 10.16048 14.02443 12.63677 Median 12.41945 10.09179 14.22736 12.61400 Maximum 13.53955 12.73508 15.62581 13.16721 Minimum 10.34509 8.579417

More information

Review: Population, sample, and sampling distributions

Review: Population, sample, and sampling distributions Review: Population, sample, and sampling distributions A population with mean µ and standard deviation σ For instance, µ = 0, σ = 1 0 1 Sample 1, N=30 Sample 2, N=30 Sample 100000000000 InterquartileRange

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

Introduction to Descriptive Statistics

Introduction to Descriptive Statistics Introduction to Descriptive Statistics 17.871 Types of Variables ~Nominal (Quantitative) Nominal (Qualitative) categorical Ordinal Interval or ratio Describing data Moment Non-mean based measure Center

More information

Chapter 7 Notes. Random Variables and Probability Distributions

Chapter 7 Notes. Random Variables and Probability Distributions Chapter 7 Notes Random Variables and Probability Distributions Section 7.1 Random Variables Give an example of a discrete random variable. Give an example of a continuous random variable. Exercises # 1,

More information

1) The Effect of Recent Tax Changes on Taxable Income

1) The Effect of Recent Tax Changes on Taxable Income 1) The Effect of Recent Tax Changes on Taxable Income In the most recent issue of the Journal of Policy Analysis and Management, Bradley Heim published a paper called The Effect of Recent Tax Changes on

More information

Gloria Gonzalez-Rivera Forecasting For Economics and Business Solutions Manual

Gloria Gonzalez-Rivera Forecasting For Economics and Business Solutions Manual Solution Manual for Forecasting for Economics and Business 1/E Gloria Gonzalez-Rivera Completed download: https://solutionsmanualbank.com/download/solution-manual-forforecasting-for-economics-and-business-1-e-gloria-gonzalez-rivera/

More information

Are the movements of stocks, bonds, and housing linked? Zachary D Easterling Department of Economics The University of Akron

Are the movements of stocks, bonds, and housing linked? Zachary D Easterling Department of Economics The University of Akron Easerling 1 Are the movements of stocks, bonds, and housing linked? Zachary D Easterling 1140324 Department of Economics The University of Akron One of the key ideas in monetary economics is that the prices

More information

Stat 328, Summer 2005

Stat 328, Summer 2005 Stat 328, Summer 2005 Exam #2, 6/18/05 Name (print) UnivID I have neither given nor received any unauthorized aid in completing this exam. Signed Answer each question completely showing your work where

More information

Measures of Center. Mean. 1. Mean 2. Median 3. Mode 4. Midrange (rarely used) Measure of Center. Notation. Mean

Measures of Center. Mean. 1. Mean 2. Median 3. Mode 4. Midrange (rarely used) Measure of Center. Notation. Mean Measure of Center Measures of Center The value at the center or middle of a data set 1. Mean 2. Median 3. Mode 4. Midrange (rarely used) 1 2 Mean Notation The measure of center obtained by adding the values

More information

Lecture 1: Empirical Properties of Returns

Lecture 1: Empirical Properties of Returns Lecture 1: Empirical Properties of Returns Econ 589 Eric Zivot Spring 2011 Updated: March 29, 2011 Daily CC Returns on MSFT -0.3 r(t) -0.2-0.1 0.1 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996

More information

Chapter 3. Density Curves. Density Curves. Basic Practice of Statistics - 3rd Edition. Chapter 3 1. The Normal Distributions

Chapter 3. Density Curves. Density Curves. Basic Practice of Statistics - 3rd Edition. Chapter 3 1. The Normal Distributions Chapter 3 The Normal Distributions BPS - 3rd Ed. Chapter 3 1 Example: here is a histogram of vocabulary scores of 947 seventh graders. The smooth curve drawn over the histogram is a mathematical model

More information

Labor Market Returns to Two- and Four- Year Colleges. Paper by Kane and Rouse Replicated by Andreas Kraft

Labor Market Returns to Two- and Four- Year Colleges. Paper by Kane and Rouse Replicated by Andreas Kraft Labor Market Returns to Two- and Four- Year Colleges Paper by Kane and Rouse Replicated by Andreas Kraft Theory Estimating the return to two-year colleges Economic Return to credit hours or sheepskin effects

More information

Data Distributions and Normality

Data Distributions and Normality Data Distributions and Normality Definition (Non)Parametric Parametric statistics assume that data come from a normal distribution, and make inferences about parameters of that distribution. These statistical

More information

Table of Contents. New to the Second Edition... Chapter 1: Introduction : Social Research...

Table of Contents. New to the Second Edition... Chapter 1: Introduction : Social Research... iii Table of Contents Preface... xiii Purpose... xiii Outline of Chapters... xiv New to the Second Edition... xvii Acknowledgements... xviii Chapter 1: Introduction... 1 1.1: Social Research... 1 Introduction...

More information

ECON Introductory Econometrics. Lecture 1: Introduction and Review of Statistics

ECON Introductory Econometrics. Lecture 1: Introduction and Review of Statistics ECON4150 - Introductory Econometrics Lecture 1: Introduction and Review of Statistics Monique de Haan (moniqued@econ.uio.no) Stock and Watson Chapter 1-2 Lecture outline 2 What is econometrics? Course

More information

Dr. Allen Back. Oct. 28, 2016

Dr. Allen Back. Oct. 28, 2016 Dr. Allen Back Oct. 28, 2016 A coffee vending machine dispenses coffee into a paper cup. You re supposed to get 10 ounces of coffee., but the amount varies slightly from cup to cup. The amounts measured

More information

Quantitative Methods

Quantitative Methods THE ASSOCIATION OF BUSINESS EXECUTIVES DIPLOMA PART 2 QM Quantitative Methods afternoon 26 May 2004 1 Time allowed: 3 hours. 2 Answer any FOUR questions. 3 All questions carry 25 marks. Marks for subdivisions

More information