delivery<-read.csv(file="d:/chilo/regression 4/delivery.csv", header=t) delivery

Size: px
Start display at page:

Download "delivery<-read.csv(file="d:/chilo/regression 4/delivery.csv", header=t) delivery"

Transcription

1 Regression Analysis lab 4 1 Model Adequacy Checking 1.1 Import data delivery<-read.csv(file="d:/chilo/regression 4/delivery.csv", header=t) delivery observation time cases distance Fit a multiple linear regression attach(delivery) dfit <- lm(time ~ cases + distance, data=delivery) summary(dfit) 1

2 Call: lm(formula = time ~ cases + distance, data = delivery) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) * cases e-09 *** distance *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Residual standard error: 3.26 on 22 degrees of freedom Multiple R-squared: 0.96,Adjusted R-squared: F-statistic: 261 on 2 and 22 DF, p-value: 4.69e-16 names(dfit) [1] "coefficients" "residuals" "effects" "rank" [5] "fitted.values" "assign" "qr" "df.residual" [9] "xlevels" "call" "terms" "model" dfit$fit dfit$res # residuals names(summary(dfit)) 2

3 [1] "call" "terms" "residuals" "coefficients" [5] "aliased" "sigma" "df" "r.squared" [9] "adj.r.squared" "fstatistic" "cov.unscaled" sigmahat<-summary(dfit)$sigma sigmahat [1] sigmahat2<-sigmahat^2 sigmahat2 [1] Compute residuals e<-dfit$res e ## ## ## ## ## ## ## 25 ## Compute standardized residuals MSE<-sigmahat2 d<-e/sqrt(mse) d ## ## ## ## ## ## ## 25 ##

4 1.5 Compute hat matrix n<-length(delivery$time) n [1] 25 delivery[,-c(1,2)] cases distance X<-cbind(1,delivery[,-c(1,2)]) X 1 cases distance

5 X <- as.matrix(x) t(x) %*% X 1 cases distance cases distance XtXi <- solve(t(x) %*% X) XtXi 1 cases distance e e e-05 cases e e e-05 distance e e e-06 H<-X %*% XtXi %*% t(x) H [,1] [,2] [,3] [,4] [,5] [,6] [1,] e [2,] e [3,] e [4,] e [5,] e [6,] e [7,] e

6 [8,] e [9,] e [10,] e [11,] e [12,] e [13,] e [14,] e [15,] e [16,] e [17,] e [18,] e [19,] e [20,] e [21,] e [22,] e [23,] e [24,] e [25,] e [,7] [,8] [,9] [,10] [,11] [,12] [1,] [2,] [3,] [4,] [5,] [6,] [7,] [8,] [9,] [10,] [11,] [12,] [13,] [14,] [15,] [16,] [17,] [18,] [19,] [20,] [21,] [22,] [23,] [24,] [25,] [,13] [,14] [,15] [,16] [,17] [,18] [,19] 6

7 [1,] [2,] [3,] [4,] [5,] [6,] [7,] [8,] [9,] [10,] [11,] [12,] [13,] [14,] [15,] [16,] [17,] [18,] [19,] [20,] [21,] [22,] [23,] [24,] [25,] [,20] [,21] [,22] [,23] [,24] [,25] [1,] 3.796e [2,] e [3,] 5.821e [4,] e [5,] 1.257e [6,] 2.672e [7,] e [8,] 2.085e [9,] 2.049e [10,] 2.947e [11,] 9.233e [12,] 3.713e [13,] 7.011e [14,] 2.782e [15,] 4.318e [16,] 6.456e [17,] 1.501e [18,] 1.704e [19,] e

8 [20,] 1.017e [21,] 3.346e [22,] 1.518e [23,] 4.327e [24,] 4.697e [25,] 1.878e Compute internally studentized residuals h<-diag(h) h ## [1] ## [9] ## [17] ## [25] r<-e/sqrt(mse*(1-h)) r ## ## ## ## ## ## ## 25 ## Compute externally studentized residuals dmse<-((n-3)*mse-e^2/(1-h))/(n-3-1) t<-e/sqrt(dmse*(1-h)) t

9 t1<-rstudent(dfit) t Hypothesis testing for outliers qt(1-0.05/(2*25),n-3-1) [1] t[9] Compute PRESS and SSE ei<-e/(1-h) ei ei^ e e e e e e e e e e e e e e+00 9

10 e e e e e e e e e e e-02 PRESS<-sum(ei^2) PRESS [1] 459 SSE<-sum(e^2) SSE [1] Table 4.1 cbind(e,d,r,h,ei,t,ei^2) e d r h ei t e e e e e e e e e e e e e e e e e e e e e e e e e-02 10

11 2 Residual plots 2.1 Normal Q-Q plot of residuals dfit <- lm(time ~ cases + distance, data=delivery) qqnorm(residuals(dfit)) qqline(residuals(dfit)) Normal Q Q Plot Sample Quantiles Theoretical Quantiles 2.2 Normal Q-Q plot of residuals qqnorm(residuals(dfit)) qqline(residuals(dfit)) 11

12 Normal Q Q Plot Sample Quantiles Theoretical Quantiles # residuals are from a heavy-tailed distribution 2.3 Normal Q-Q plot of studentized residuals qqnorm(r, xlab="normal Quantiles", ylab="studentized residual Quantiles") qqline(r) 12

13 Normal Q Q Plot Studentized residual Quantiles Normal Quantiles 2.4 Residual plots plot(dfit$fit,dfit$res,xlab="fitted Value",ylab="Residual", pch=16) title(main="residual plot") abline(h=0) 13

14 Residual plot Residual Fitted Value plot(dfit$fit,r,xlab="fitted Value",ylab="Studentized residual", pch=16) title(main="residual plot") abline(h=0) 14

15 Residual plot Studentized residual Fitted Value plot(dfit$fit,r,xlab="fitted Value",ylab="Studentized residual", pch=16) title(main="residual plot") abline(h=0) identify(dfit$fit,r) 15

16 Residual plot Studentized residual Fitted Value integer(0) plot(dfit$fit,t,xlab="fitted Value", ylab="externally Studentized residual", pch=16) title(main="residual plot") mtext(side=3, line=0, text="residual vs. fitted") abline(h=0) 16

17 Residual plot residual vs. fitted Externally Studentized residual Fitted Value attach(delivery) The following objects are masked from delivery (position 3): cases, distance, observation, time plot(cases, dfit$res,xlab="cases",ylab="residual", pch=16) title(main="residual plot") mtext(side=3, line=0, text="residual vs. cases") abline(h=0) 17

18 Residual plot residual vs. cases Residual Cases plot(distance, dfit$res,xlab="distance",ylab="residual", pch=16) title(main="residual plot") mtext(side=3, line=0, text="residual vs. distance") abline(h=0) 18

19 Residual plot residual vs. distance Residual distance 2.5 Series plot ts.plot(dfit$res,xlab="observation number",ylab="residual") title(main="series plot") abline(h=0) 19

20 Series plot Residual observation number 2.6 Scatter plot lagres<-0 for(i in 1:24){lagres[i+1]=dfit$res[i]} lagres[1]<-na lagres [1] NA [8] [15] [22] cbind(dfit$res, lagres) lagres NA 20

21 plot(lagres, dfit$res,xlab="lagged residual",ylab="residual", pch=16) title(main="scatter plot") mtext(side=3, line=0, text="residual vs. lagged residual") 21

22 Scatter plot residual vs. lagged residual Residual lagged residual 2.7 Partial residual plot dfit <- lm(time ~ cases + distance, data=delivery) dfit$coef (Intercept) cases distance pres<-dfit$res+dfit$coef['cases']*cases plot(cases, pres, xlab="cases",ylab="time(adjusted)", pch=16) title(main="partial residual plot") 22

23 Partial residual plot Time(adjusted) Cases 2.8 Partial regression plot dfit1 <- lm(time ~ distance, data=delivery)$res dfit2 <- lm(cases ~ distance, data=delivery)$res plot(dfit2, dfit1, xlab="residual(cases distance)", ylab="residual(time distance)", pch=16) title(main="partial regression plot") 23

24 Partial regression plot residual(time distance) residual(cases distance) dfit3 <- lm(time ~ cases, data=delivery)$res dfit4 <- lm(distance ~ cases, data=delivery)$res plot(dfit4, dfit3, xlab="residual(distance cases)", ylab="residual(time cases", pch=16) title(main="partial regression plot") 24

25 Partial regression plot residual(time cases residual(distance cases) 2.9 Both Partial regression and Partial residual plots dfit <- lm(time ~ cases + distance, data=delivery) dfit$coef (Intercept) cases distance par(mfrow=c(1,2)) dfit1 <- lm(time ~ distance, data=delivery)$res dfit2 <- lm(cases ~ distance, data=delivery)$res plot(dfit2, dfit1, xlab="residual(cases distance)", ylab="residual(time distance)", pch=16) title(main="partial regression plot") abline(0,dfit$coef[2]) 25

26 dfit <- lm(time ~ cases + distance, data=delivery) dfit$coef (Intercept) cases distance pres<-dfit$res+dfit$coef[2]*cases plot(cases, pres, xlab="cases",ylab="time(adjusted)", pch=16) title(main="partial residual plot") abline(0,dfit$coef[2]) Partial regression plot Partial residual plot residual(time distance) Time(adjusted) residual(cases distance) Cases par(mfrow=c(1,1)) 3 Lack of fit test 26

27 xx<-c(1.0, 1.0, 2.0, 3.3, 3.3, 4.0, 4.0, 4.0, 4.7, 5.0, 5.6, 5.6, 5.6, 6.0, 6.0, 6.5, 6.9) yy<-c(10.84, 9.30, 16.35, 22.88, 24.35, 24.56, 25.86, 29.16, 24.59, 22.25, 25.90, 27.20, 25.61, 25.45, 26.56, 21.03, 21.46) g<-lm(yy ~ xx) summary(g) Call: lm(formula = yy ~ xx) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) *** xx ** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Residual standard error: 4.08 on 15 degrees of freedom Multiple R-squared: 0.487,Adjusted R-squared: F-statistic: 14.2 on 1 and 15 DF, p-value: anova(g) Analysis of Variance Table Response: yy Df Sum Sq Mean Sq F value Pr(>F) xx ** Residuals Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 plot(xx,yy, main="scatter plot") abline(g$coef) ga <- lm(yy ~ factor(xx)) points(xx, ga$fit, pch=18) 27

28 Scatter plot yy xx anova(g,ga) Analysis of Variance Table Model 1: yy ~ xx Model 2: yy ~ factor(xx) Res.Df RSS Df Sum of Sq F Pr(>F) ** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 28

tool<-read.csv(file="d:/chilo/regression 7/tool.csv", header=t) tool

tool<-read.csv(file=d:/chilo/regression 7/tool.csv, header=t) tool Regression nalysis lab 7 1 Indicator variables 1.1 Import data tool

More information

Motor Trend MPG Analysis

Motor Trend MPG Analysis Motor Trend MPG Analysis SJ May 15, 2016 Executive Summary For this project, we were asked to look at a data set of a collection of cars in the automobile industry. We are going to explore the relationship

More information

Motor Trend Yvette Winton September 1, 2016

Motor Trend Yvette Winton September 1, 2016 Motor Trend Yvette Winton September 1, 2016 Executive Summary Objective In this analysis, the relationship between a set of variables and miles per gallon (MPG) (outcome) is explored from a data set of

More information

Drilling Example: Diagnostic Plots

Drilling Example: Diagnostic Plots Math 3080 1. Treibergs Drilling Example: Diagnostic Plots Name: Example March 1, 2014 This data is taken from Penner & Watts, Mining Information, American Statistician 1991, as quoted by Levine, Ramsey

More information

Regression Models Course Project, 2016

Regression Models Course Project, 2016 Regression Models Course Project, 2016 Venkat Batchu July 13, 2016 Executive Summary In this report, mtcars data set is explored/analyzed for relationship between outcome variable mpg (miles for gallon)

More information

AIC Laboratory R. Leaf November 28, 2016

AIC Laboratory R. Leaf November 28, 2016 AIC Laboratory R. Leaf November 28, 2016 In this lab we will evaluate the role of AIC to help us understand how this index can assist in model selection and model averaging. We will use the mtcars data

More information

R-Sq criterion Data : Surgical room data Chap 9

R-Sq criterion Data : Surgical room data Chap 9 Chap 9 - For controlled experiments model reduction is not very important. P 347 - For exploratory observational studies, model reduction is important. Criteria for model selection p353 R-Sq criterion

More information

fruitfly fecundity example summary Tuesday, July 17, :13:19 PM 1

fruitfly fecundity example summary Tuesday, July 17, :13:19 PM 1 fruitfly fecundity example summary Tuesday, July 17, 2018 02:13:19 PM 1 The UNIVARIATE Procedure Variable: fecund line = NS Basic Statistical Measures Location Variability Mean 33.37200 Std Deviation 8.94201

More information

The PRINCOMP Procedure

The PRINCOMP Procedure Grizzly Bear Project - Coastal Sites - invci 15:14 Friday, June 11, 2010 1 Food production variables The PRINCOMP Procedure Observations 16 Variables 4 Simple Statistics PRECIP ndvi aet temp Mean 260.8102476

More information

Stat 401 B Lecture 31

Stat 401 B Lecture 31 Model Selection Response: Highway MPG Explanatory: 13 explanatory variables Indicator variables for types of car Sports Car, SUV, Wagon, Minivan 1 Explanatory Variables Engine size (liters) Cylinders (number)

More information

Stat 301 Lecture 30. Model Selection. Explanatory Variables. A Good Model. Response: Highway MPG Explanatory: 13 explanatory variables

Stat 301 Lecture 30. Model Selection. Explanatory Variables. A Good Model. Response: Highway MPG Explanatory: 13 explanatory variables Model Selection Response: Highway MPG Explanatory: 13 explanatory variables Indicator variables for types of car Sports Car, SUV, Wagon, Minivan 1 Explanatory Variables Engine size (liters) Cylinders (number)

More information

. Enter. Model Summary b. Std. Error. of the. Estimate. Change. a. Predictors: (Constant), Emphaty, reliability, Assurance, responsive, Tangible

. Enter. Model Summary b. Std. Error. of the. Estimate. Change. a. Predictors: (Constant), Emphaty, reliability, Assurance, responsive, Tangible LAMPIRAN Variables Entered/Removed b Variables Model Variables Entered Removed Method 1 Emphaty, reliability, Assurance, responsive, Tangible a. Enter a. All requested variables entered. b. Dependent Variable:

More information

EXST7034 Multiple Regression Geaghan Chapter 11 Bootstrapping (Toluca example) Page 1

EXST7034 Multiple Regression Geaghan Chapter 11 Bootstrapping (Toluca example) Page 1 Chapter 11 Bootstrapping (Toluca example) Page 1 Toluca Company Example (Problem from Neter, Kutner, Nachtsheim & Wasserman 1996,1.21) A particular part needed for refigeration equipment replacement parts

More information

The Coefficient of Determination

The Coefficient of Determination The Coefficient of Determination Lecture 46 Section 13.9 Robb T. Koether Hampden-Sydney College Tue, Apr 13, 2010 Robb T. Koether (Hampden-Sydney College) The Coefficient of Determination Tue, Apr 13,

More information

HASIL OUTPUT SPSS. Reliability Scale: ALL VARIABLES

HASIL OUTPUT SPSS. Reliability Scale: ALL VARIABLES 139 HASIL OUTPUT SPSS Reliability Scale: ALL VARIABLES Case Processing Summary N % 100 100.0 Cases Excluded a 0.0 Total 100 100.0 a. Listwise deletion based on all variables in the procedure. Reliability

More information

Booklet of Code and Output for STAD29/STA 1007 Final Exam

Booklet of Code and Output for STAD29/STA 1007 Final Exam Booklet of Code and Output for STAD29/STA 1007 Final Exam List of Figures in this document by page: List of Figures 1 Raisins data.............................. 2 2 Boxplot of raisin data........................

More information

Stat 401 B Lecture 27

Stat 401 B Lecture 27 Model Selection Response: Highway MPG Explanatory: 13 explanatory variables Indicator variables for types of car Sports Car, SUV, Wagon, Minivan There is an indicator for Pickup but there are no pickups

More information

Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R.

Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. R version 2.13.1 (2011-07-08) Copyright (C) 2011 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: x86_64-pc-mingw32/x64 (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY.

More information

Exercises An Introduction to R for Epidemiologists using RStudio SER 2014

Exercises An Introduction to R for Epidemiologists using RStudio SER 2014 Exercises An Introduction to R for Epidemiologists using RStudio SER 2014 S Mooney June 18, 2014 1. (a) Create a vector of numbers named odd.numbers with all odd numbers between 1 and 19, inclusive odd.numbers

More information

Stat 301 Lecture 26. Model Selection. Indicator Variables. Explanatory Variables

Stat 301 Lecture 26. Model Selection. Indicator Variables. Explanatory Variables Model Selection Response: Highway MPG Explanatory: 13 explanatory variables Indicator variables for types of car Sports Car, SUV, Wagon, Minivan There is an indicator for Pickup but there are no pickups

More information

Guatemalan cholesterol example summary

Guatemalan cholesterol example summary Guatemalan cholesterol example summary Wednesday, July 11, 2018 02:04:06 PM 1 The UNIVARIATE Procedure Variable: level = rural Basic Statistical Measures Location Variability Mean 157.0204 Std Deviation

More information

TABLE 4.1 POPULATION OF 100 VALUES 2

TABLE 4.1 POPULATION OF 100 VALUES 2 TABLE 4. POPULATION OF 00 VALUES WITH µ = 6. AND = 7.5 8. 6.4 0. 9.9 9.8 6.6 6. 5.7 5. 6.3 6.7 30.6.6.3 30.0 6.5 8. 5.6 0.3 35.5.9 30.7 3.. 9. 6. 6.8 5.3 4.3 4.4 9.0 5.0 9.9 5. 0.8 9.0.9 5.4 7.3 3.4 38..6

More information

TRY OUT 25 Responden Variabel Kepuasan / x1

TRY OUT 25 Responden Variabel Kepuasan / x1 1 TRY OUT 25 Responden Variabel Kepuasan / x1 Case Processing Summary N % 25 100.0 Cases Excluded a 0.0 Total 25 100.0 a. Listwise deletion based on all variables in the procedure. Reliability Statistics

More information

Script mod4s3b: Serial Correlation, Hotel Application

Script mod4s3b: Serial Correlation, Hotel Application Script mod4s3b: Serial Correlation, Hotel Application Instructor: Klaus Moeltner March 28, 2013 Load and Prepare Data This example uses 96 months of observations on water use by one of the hotels from

More information

Appendix B STATISTICAL TABLES OVERVIEW

Appendix B STATISTICAL TABLES OVERVIEW Appendix B STATISTICAL TABLES OVERVIEW Table B.1: Proportions of the Area Under the Normal Curve Table B.2: 1200 Two-Digit Random Numbers Table B.3: Critical Values for Student s t-test Table B.4: Power

More information

Lampiran IV. Hasil Output SPSS Versi 16.0 untuk Analisis Deskriptif

Lampiran IV. Hasil Output SPSS Versi 16.0 untuk Analisis Deskriptif 182 Lampiran IV. Hasil Output SPSS Versi 16.0 untuk Analisis Deskriptif Frequencies Statistics Kinerja Guru Sikap Guru Thdp Kepsek Motivasi Kerja Guru Kompetensi Pedagogik Guru N Valid 64 64 64 64 Missing

More information

UJI VALIDITAS DAN RELIABILIAS VARIABEL KOMPENSASI

UJI VALIDITAS DAN RELIABILIAS VARIABEL KOMPENSASI 1 UJI VALIDITAS DAN RELIABILIAS VARIABEL KOMPENSASI Case Processing Summary N % 20 100.0 Cases Excluded a 0.0 Total 20 100.0 a. Listwise deletion based on all variables in the procedure. Reliability Statistics

More information

female male help("predict") yhat age

female male help(predict) yhat age 30 40 50 60 70 female male 1.0 help("predict") 0.5 yhat 0.0 0.5 1.0 30 40 50 60 70 age 30 40 50 60 70 1.5 1.0 female male help("predict") 0.5 yhat 0.0 0.5 1.0 1.5 30 40 50 60 70 age 2 Wald Statistics Response:

More information

TRY OUT 30 Responden Variabel Kompetensi/ x1

TRY OUT 30 Responden Variabel Kompetensi/ x1 1 TRY OUT 30 Responden Variabel Kompetensi/ x1 Case Processing Summary N % 30 100.0 Cases Excluded a 0.0 Total 30 100.0 a. Listwise deletion based on all variables in the procedure. Reliability Statistics

More information

Catalytic effects of period iv transition metal in the oxidation of biodiesel

Catalytic effects of period iv transition metal in the oxidation of biodiesel Wayne State University DigitalCommons@WayneState Wayne State University Theses 1-1-2012 Catalytic effects of period iv transition metal in the oxidation of biodiesel Bradley Clark Wayne State University,

More information

INSTRUCTOR: KLAUS MOELTNER

INSTRUCTOR: KLAUS MOELTNER SCRIPT MOD4S3A: SERIAL CORRELATION, CONSUMPTION APPLICATION INSTRUCTOR: KLAUS MOELTNER Load and Prepare Data This example uses Greene s consumption data from mod4s1b. Here we focus on money demand as the

More information

Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR

Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR Tutorial 1 Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR Dataset for running Correlated Component Regression This tutorial 1 is based on data provided by Michel Tenenhaus and

More information

Model Information Data Set. Response Variable (Events) Summe Response Variable (Trials) N Response Distribution Binomial Link Function

Model Information Data Set. Response Variable (Events) Summe Response Variable (Trials) N Response Distribution Binomial Link Function 02:32 Donnerstag, November 03, 2016 1 Model Information Data Set WORK.EXP Response Variable (Events) Summe Response Variable (Trials) N Response Distribution inomial Link Function Logit Variance Function

More information

Basic SAS and R for HLM

Basic SAS and R for HLM Basic SAS and R for HLM Edps/Psych/Soc 589 Carolyn J. Anderson Department of Educational Psychology c Board of Trustees, University of Illinois Spring 2019 Overview The following will be demonstrated in

More information

Important Formulas. Discrete Probability Distributions. Probability and Counting Rules. The Normal Distribution. Confidence Intervals and Sample Size

Important Formulas. Discrete Probability Distributions. Probability and Counting Rules. The Normal Distribution. Confidence Intervals and Sample Size blu38582_if_1-8.qxd 9/27/10 9:19 PM Page 1 Important Formulas Chapter 3 Data Description Mean for individual data: Mean for grouped data: Standard deviation for a sample: X2 s X n 1 or Standard deviation

More information

Some Robust and Classical Nonparametric Procedures of Estimations in Linear Regression Model

Some Robust and Classical Nonparametric Procedures of Estimations in Linear Regression Model Some Robust and Classical Nonparametric Procedures of Estimations in Linear Regression Model F.B. Adebola, Ph.D.; E.I. Olamide, M.Sc. * ; and O.O. Alabi, Ph.D. Department of Statistics, Federal University

More information

SEM over time. Changes in Structure, changes in Means

SEM over time. Changes in Structure, changes in Means SEM over time Changes in Structure, changes in Means Measuring at two time points Is the structure the same Do the means change (is there growth) Create the data x.model

More information

Component Mass Study Statistical Benchmarking

Component Mass Study Statistical Benchmarking Component Mass Study Statistical Benchmarking Benoit Singher, A2Mac1 Automotive Benchmarking Russ Balzer, WorldAutoSteel Donald Malen, University of Michigan GDIS217 Statistical mass benchmarking Programs

More information

Topic 5 Lecture 3 Estimating Policy Effects via the Simple Linear. Regression Model (SLRM) and the Ordinary Least Squares (OLS) Method

Topic 5 Lecture 3 Estimating Policy Effects via the Simple Linear. Regression Model (SLRM) and the Ordinary Least Squares (OLS) Method Econometrics for Health Policy, Health Economics, and Outcomes Research Topic 5 Lecture 3 Estimating Policy Effects via the Simple Linear Regression Model (SLRM) and the Ordinary Least Squares (OLS) Method

More information

Review of Upstate Load Forecast Uncertainty Model

Review of Upstate Load Forecast Uncertainty Model Review of Upstate Load Forecast Uncertainty Model Arthur Maniaci Supervisor, Load Forecasting & Energy Efficiency New York Independent System Operator Load Forecasting Task Force June 17, 2011 Draft for

More information

The Dynamics of Plug-in Electric Vehicles in the Secondary Market

The Dynamics of Plug-in Electric Vehicles in the Secondary Market The Dynamics of Plug-in Electric Vehicles in the Secondary Market Dr. Gil Tal gtal@ucdavis.edu Dr. Tom Turrentine Dr. Mike Nicholas Sponsored by the California Air Resources Board Population and Sampling

More information

Identify Formula for Throughput with Multi-Variate Regression

Identify Formula for Throughput with Multi-Variate Regression DECISION SCIENCES INSTITUTE Using multi-variate regression and simulation to identify a generic formula for throughput of flow manufacturing lines with identical stations Samrawi Berhanu Gebermedhin and

More information

5. CONSTRUCTION OF THE WEIGHT-FOR-LENGTH AND WEIGHT-FOR- HEIGHT STANDARDS

5. CONSTRUCTION OF THE WEIGHT-FOR-LENGTH AND WEIGHT-FOR- HEIGHT STANDARDS 5. CONSTRUCTION OF THE WEIGHT-FOR-LENGTH AND WEIGHT-FOR- HEIGHT STANDARDS 5.1 Indicator-specific methodology The construction of the weight-for-length (45 to 110 cm) and weight-for-height (65 to 120 cm)

More information

Lampiran 1. Penjualan PT Honda Mandiri Bogor

Lampiran 1. Penjualan PT Honda Mandiri Bogor LAMPIRAN 64 Lampiran 1. Penjualan PT Honda Mandiri Bogor 29-211 PENJUALAN 29 TYPE JAN FEB MAR APR MEI JUNI JULI AGT SEP OKT NOV DES TOTA JAZZ 16 14 22 15 23 19 13 28 15 28 3 25 248 FREED 23 25 14 4 13

More information

THERMOELECTRIC SAMPLE CONDITIONER SYSTEM (TESC)

THERMOELECTRIC SAMPLE CONDITIONER SYSTEM (TESC) THERMOELECTRIC SAMPLE CONDITIONER SYSTEM (TESC) FULLY AUTOMATED ASTM D2983 CONDITIONING AND TESTING ON THE CANNON TESC SYSTEM WHITE PAPER A critical performance parameter for transmission, gear, and hydraulic

More information

Modeling Ignition Delay in a Diesel Engine

Modeling Ignition Delay in a Diesel Engine Modeling Ignition Delay in a Diesel Engine Ivonna D. Ploma Introduction The object of this analysis is to develop a model for the ignition delay in a diesel engine as a function of four experimental variables:

More information

Master of Applied Statistics Applied Statistics Comprehensive Exam Computer Output January 2018

Master of Applied Statistics Applied Statistics Comprehensive Exam Computer Output January 2018 Question 1a output Master of Applied Statistics Applied Statistics Comprehensive Exam Computer Output January 2018 Question 1f output Basic Statistical Measures Location Variability Mean -2.32429 Std Deviation

More information

Oregon DOT Slow-Speed Weigh-in-Motion (SWIM) Project: Analysis of Initial Weight Data

Oregon DOT Slow-Speed Weigh-in-Motion (SWIM) Project: Analysis of Initial Weight Data Portland State University PDXScholar Center for Urban Studies Publications and Reports Center for Urban Studies 7-1997 Oregon DOT Slow-Speed Weigh-in-Motion (SWIM) Project: Analysis of Initial Weight Data

More information

LAMPIRAN 1. Tabel 1. Data Indeks Harga Saham PT. ANTAM, tbk Periode 20 Januari Februari 2012

LAMPIRAN 1. Tabel 1. Data Indeks Harga Saham PT. ANTAM, tbk Periode 20 Januari Februari 2012 LAMPIRAN 1 Tabel 1. Data Indeks Harga Saham PT. ANTAM, tbk Periode 20 Januari 2011 29 Februari 2012 No Tanggal Indeks Harga Saham No Tanggal Indeks Harga Saham 1 20-Jan-011 2.35 138 05-Agst-011 1.95 2

More information

namibia UniVERSITY OF SCIEnCE AnD TECHnOLOGY FACULTY OF HEALTH AND APPLIED SCIENCES DEPARTMENT OF MATHEMATICS AND STATISTICS MARKS: 100

namibia UniVERSITY OF SCIEnCE AnD TECHnOLOGY FACULTY OF HEALTH AND APPLIED SCIENCES DEPARTMENT OF MATHEMATICS AND STATISTICS MARKS: 100 namibia UniVERSITY OF SCIEnCE AnD TECHnOLOGY FACULTY OF HEALTH AND APPLIED SCIENCES DEPARTMENT OF MATHEMATICS AND STATISTICS QUALIFICATION: BACHELOR OF ECONOMICS -., QUALIFICATION CODE: 7BAMS LEVEL: 7

More information

PREDICTION OF FUEL CONSUMPTION

PREDICTION OF FUEL CONSUMPTION PREDICTION OF FUEL CONSUMPTION OF AGRICULTURAL TRACTORS S. C. Kim, K. U. Kim, D. C. Kim ABSTRACT. A mathematical model was developed to predict fuel consumption of agricultural tractors using their official

More information

Technical Papers supporting SAP 2009

Technical Papers supporting SAP 2009 Technical Papers supporting SAP 29 A meta-analysis of boiler test efficiencies to compare independent and manufacturers results Reference no. STP9/B5 Date last amended 25 March 29 Date originated 6 October

More information

Lampiran 1. Data Perusahaan

Lampiran 1. Data Perusahaan Lampiran. Data Perusahaan NO PERUSH MV EARN DIV CFO LB.USAHA TOT.ASS ACAP 3 9 8 5 369 9678 376 ADES 75-35 - 6 3559-5977 7358 3 AQUA 5 368 65 335 797 678 53597 BATA 88 5 9 863 958 93 5 BKSL 5.3 -. 9-9 5

More information

Robust alternatives to best linear unbiased prediction of complex traits

Robust alternatives to best linear unbiased prediction of complex traits Robust alternatives to best linear unbiased prediction of complex traits WHY BEST LINEAR UNBIASED PREDICTION EASY TO EXPLAIN FLEXIBLE AMENDABLE WELL UNDERSTOOD FEASIBLE UNPRETENTIOUS NORMALITY IS IMPLICIT

More information

Example #1: One-Way Independent Groups Design. An example based on a study by Forster, Liberman and Friedman (2004) from the

Example #1: One-Way Independent Groups Design. An example based on a study by Forster, Liberman and Friedman (2004) from the Example #1: One-Way Independent Groups Design An example based on a study by Forster, Liberman and Friedman (2004) from the Journal of Personality and Social Psychology illustrates the SAS/IML program

More information

9.3 Tests About a Population Mean (Day 1)

9.3 Tests About a Population Mean (Day 1) Bellwork In a recent year, 73% of first year college students responding to a national survey identified being very well off financially as an important personal goal. A state university finds that 132

More information

BOR-ROOM INVENTORY EDIT BY BUILDING LOUISIANA DELTA COMMUNITY COLLEGE FALL DATA 2013 BRANCH RUN DATE 11/20/ :16:39 PARISH PAGE NUMBER 1

BOR-ROOM INVENTORY EDIT BY BUILDING LOUISIANA DELTA COMMUNITY COLLEGE FALL DATA 2013 BRANCH RUN DATE 11/20/ :16:39 PARISH PAGE NUMBER 1 PAGE NUMBER 1 RELATION OTHER 0001 0001E 75 00 020 0001 0001S 229 00 020 0001 0002E 75 00 020 0001 0002S 298 00 020 0001 0003S 294 00 020 0001 0004S 300 00 020 0001 0005S 369 00 020 0001 0006S 294 00 020

More information

Lampiran 1. Tabel Sampel Penelitian

Lampiran 1. Tabel Sampel Penelitian Lampiran 1 Tabel Sampel Penelitian No Kode Emiten Nama Perusahaan Tanggal IPO 1 APLN Agung Podomoro Land Tbk 11 Nov 2010 2 ASRI Alam Sutera Reality Tbk 18 Dec 2007 3 BAPA Bekasi Asri Pemula Tbk 14 Jan

More information

Objectives. Materials TI-73 CBL 2

Objectives. Materials TI-73 CBL 2 . Objectives To understand the relationship between dry cell size and voltage Activity 4 Materials TI-73 Unit-to-unit cable Voltage from Dry Cells CBL 2 Voltage sensor New AAA, AA, C, and D dry cells Battery

More information

Statistics and Quantitative Analysis U4320. Segment 8 Prof. Sharyn O Halloran

Statistics and Quantitative Analysis U4320. Segment 8 Prof. Sharyn O Halloran Statistics and Quantitative Analysis U4320 Segment 8 Prof. Sharyn O Halloran I. Introduction A. Overview 1. Ways to describe, summarize and display data. 2.Summary statements: Mean Standard deviation Variance

More information

: ( .

: ( . 2 27 ( ) 2 3 4 2 ( ) 59 Y n n U i ( ) & smith H 98 Draper N Curran PJ,bauer DJ & Willoughby Kam,Cindy &Robert 23 MT24 Jaccard,J & Rebert T23 Franzese 23 Aiken LS & West SG 99 " Multiple Regression Testing

More information

Universitas Sumatera Utara

Universitas Sumatera Utara LAMPIRAN I LAMPRIAN PDRB Harga Berlaku NO KAB/KOTA 2005 2006 2007 2008 2009 2010 1 Asahan 15527794210 6429147880 8174125380 9505603030 10435935630 11931676610 2 Dairi 2303591460 2552751860 2860204810 3116742540

More information

Quality Control in Mineral Exploration

Quality Control in Mineral Exploration Quality Control in Mineral Exploration Controlling the Quality of Information from Field to Data Base Not to be reproduced without written permission Quality Control in Mineral Exploration There many goals

More information

MOTORCYCLE ACCIDENT MODEL ON THE ROAD SECTION OF HIGHLANDS REGION BY USING GENELARIZED LINEAR MODEL

MOTORCYCLE ACCIDENT MODEL ON THE ROAD SECTION OF HIGHLANDS REGION BY USING GENELARIZED LINEAR MODEL International Journal of Civil Engineering and Technology (IJCIET) Volume 8, Issue 10, October 2017, pp. 1249-1258 1248, Article ID: IJCIET_08_10_127 Available online at http://http://www.iaeme.com/ijciet/issues.asp?jtype=ijciet&vtype=8&itype=10

More information

The following output is from the Minitab general linear model analysis procedure.

The following output is from the Minitab general linear model analysis procedure. Chapter 13. Supplemental Text Material 13-1. The Staggered, Nested Design In Section 13-1.4 we introduced the staggered, nested design as a useful way to prevent the number of degrees of freedom from building

More information

1 of 28 9/15/2016 1:16 PM

1 of 28 9/15/2016 1:16 PM 1 of 28 9/15/2016 1:16 PM 2 of 28 9/15/2016 1:16 PM 3 of 28 9/15/2016 1:16 PM objects(package:psych).first < function(library(psych)) help(read.table) #or?read.table #another way of asking for help apropos("read")

More information

LET S ARGUE: STUDENT WORK PAMELA RAWSON. Baxter Academy for Technology & Science Portland, rawsonmath.

LET S ARGUE: STUDENT WORK PAMELA RAWSON. Baxter Academy for Technology & Science Portland, rawsonmath. LET S ARGUE: STUDENT WORK PAMELA RAWSON Baxter Academy for Technology & Science Portland, Maine pamela.rawson@gmail.com @rawsonmath rawsonmath.com Contents Student Movie Data Claims (Cycle 1)... 2 Student

More information

Using Statistics To Make Inferences 6. Wilcoxon Matched Pairs Signed Ranks Test. Wilcoxon Rank Sum Test/ Mann-Whitney Test

Using Statistics To Make Inferences 6. Wilcoxon Matched Pairs Signed Ranks Test. Wilcoxon Rank Sum Test/ Mann-Whitney Test Using Statistics To Make Inferences 6 Summary Non-parametric tests Wilcoxon Signed Ranks Test Wilcoxon Matched Pairs Signed Ranks Test Wilcoxon Rank Sum Test/ Mann-Whitney Test Goals Perform and interpret

More information

LAMPIRAN I FORMULIR SURVEI

LAMPIRAN I FORMULIR SURVEI LAMPIRAN I FORMULIR SURVEI 56 Universitas Kristen Maranatha L.1.1 FORMULIR SURVEI KEBISINGAN LALULINTAS Lokasi : Cuaca : Hari/Tanggal : Surveyor : Periode / menit 5 10 15 20 25 30 35 40 45 50 55 60 65

More information

LECTURE 6: HETEROSKEDASTICITY

LECTURE 6: HETEROSKEDASTICITY LECTURE 6: HETEROSKEDASTICITY Summary of MLR Assumptions 2 MLR.1 (linear in parameters) MLR.2 (random sampling) the basic framework (we have to start somewhere) MLR.3 (no perfect collinearity) a technical

More information

CHAPTER V CONCLUSION, SUGGESTION AND LIMITATION. 1. Independent commissioner boards proportion does not negatively affect

CHAPTER V CONCLUSION, SUGGESTION AND LIMITATION. 1. Independent commissioner boards proportion does not negatively affect CHAPTER V CONCLUSION, SUGGESTION AND LIMITATION 5.. Conclusion Based on data analysis that has been done, researcher may draw following conclusions:. Independent commissioner boards proportion does not

More information

Statistics for Social Research

Statistics for Social Research Facoltà di Scienze della Formazione, Scienze Politiche e Sociali Statistics for Social Research Lesson 2: Descriptive Statistics Prof.ssa Monica Palma a.a. 2016-2017 DESCRIPTIVE STATISTICS How do we describe

More information

Stat 302 Statistical Software and Its Applications Graphics

Stat 302 Statistical Software and Its Applications Graphics Stat 302 Statistical Software and Its Applications Graphics Yen-Chi Chen Department of Statistics, University of Washington Autumn 2016 1 / 44 General Remarks on R Graphics A well constructed graph is

More information

LAMPIRAN 1. Lampiran Nama dan Kondisi Perusahaan Textile No Kode Nama Perusahaan Hasil z-score FD Non-FD

LAMPIRAN 1. Lampiran Nama dan Kondisi Perusahaan Textile No Kode Nama Perusahaan Hasil z-score FD Non-FD 87 LAMPIRAN 1. Lampiran Nama dan Kondisi Perusahaan Textile 2010-2014 No Kode Nama Perusahaan Hasil z-score FD Non-FD 1 ADMG PT Polychem Indonesia Tbk 1,39 1 2 ARGO PT Argo Pantes Tbk 0,93 1 3 CTNX PT

More information

The Session.. Rosaria Silipo Phil Winters KNIME KNIME.com AG. All Right Reserved.

The Session.. Rosaria Silipo Phil Winters KNIME KNIME.com AG. All Right Reserved. The Session.. Rosaria Silipo Phil Winters KNIME 2016 KNIME.com AG. All Right Reserved. Past KNIME Summits: Merging Techniques, Data and MUSIC! 2016 KNIME.com AG. All Rights Reserved. 2 Analytics, Machine

More information

LAMPIRAN I Data Perusahaan Sampel kode DPS EPS Ekuitas akpi ,97 51,04 40,

LAMPIRAN I Data Perusahaan Sampel kode DPS EPS Ekuitas akpi ,97 51,04 40, LAMPIRAN I Data Perusahaan Sampel kode DPS EPS Ekuitas 2013 2014 2015 2013 2014 2015 2013 2014 2015 akpi 34 8 9 50,97 51,04 40,67 1.029.336.000.000 1.035.846.000.000 1.107.566.000.000 asii 216 216 177

More information

Improving CERs building

Improving CERs building Improving CERs building Getting Rid of the R² tyranny Pierre Foussier pmf@3f fr.com ISPA. San Diego. June 2010 1 Why abandon the OLS? The ordinary least squares (OLS) aims to build a CER by minimizing

More information

LAMPIRAN DAFTAR SAMPEL PENELITIAN. Kriteria No. Nama Perusahaan. Sampel Emiten

LAMPIRAN DAFTAR SAMPEL PENELITIAN. Kriteria No. Nama Perusahaan. Sampel Emiten LAMPIRAN DAFTAR SAMPEL PENELITIAN Kode Kriteria No. Nama Perusahaan Sampel Emiten 1 2 3 1. AGRO PT. Bank Agroniaga, Tbk 1 2. BABP PT. Bank ICB Bumiputera Indonesia, Tbk X - 3. BBCA PT. Bank Central Asia,

More information

DEPARTMENT OF STATISTICS AND DEMOGRAPHY MAIN EXAMINATION, 2011/12 STATISTICAL INFERENCE II ST232 TWO (2) HOURS. ANSWER ANY mree QUESTIONS

DEPARTMENT OF STATISTICS AND DEMOGRAPHY MAIN EXAMINATION, 2011/12 STATISTICAL INFERENCE II ST232 TWO (2) HOURS. ANSWER ANY mree QUESTIONS I.. UNIVERSITY OF SWAZILAND Page 1 of3 DEPARTMENT OF STATISTICS AND DEMOGRAPHY, MAIN EXAMINATION, 2011/12 COURSE TITLE: STATISTICAL INFERENCE II COURSE CODE: ST232 TIME ALLOWED: TWO (2) HOURS INSTRUCTION:

More information

Author s Accepted Manuscript

Author s Accepted Manuscript Author s Accepted Manuscript Dataset on statistical analysis of Jet A-1 fuel laboratory properties for on-spec into-plane operations Aderibigbe Israel Adekitan, Tobi Shomefun, Temitope M. John, Bukola

More information

Sharif University of Technology. Graduate School of Management and Economics. Econometrics I. Fall Seyed Mahdi Barakchian

Sharif University of Technology. Graduate School of Management and Economics. Econometrics I. Fall Seyed Mahdi Barakchian Sharif University of Technology Graduate School of Management and Economics Econometrics I Fall 2010 Seyed Mahdi Barakchian Textbook: Wooldridge, J., Introductory Econometrics: A Modern Approach, South

More information

R Introductory Session

R Introductory Session R Introductory Session Michael Hahsler March 4, 2009 Contents 1 Introduction 2 1.1 Getting Help................................................. 2 2 Basic Data Types 2 2.1 Vector.....................................................

More information

Road Surface characteristics and traffic accident rates on New Zealand s state highway network

Road Surface characteristics and traffic accident rates on New Zealand s state highway network Road Surface characteristics and traffic accident rates on New Zealand s state highway network Robert Davies Statistics Research Associates http://www.statsresearch.co.nz Joint work with Marian Loader,

More information

Interstate Freight in Australia,

Interstate Freight in Australia, Interstate Freight in Australia, 1972 2005 Leo Soames, Afzal Hossain and David Gargett Bureau of Transport and Regional Economics, Department of Transport and Regional Services, Canberra, ACT, Australia

More information

Time Series Topics (using R)

Time Series Topics (using R) Time Series Topics (using R) (work in progress, 2.0) Oscar Torres-Reyna otorres@princeton.edu July 2015 http://dss.princeton.edu/training/ date1 date2 date3 date4 1 1-Jan-90 1/1/1990 19900101 199011 2

More information

CEMENT AND CONCRETE REFERENCE LABORATORY PROFICIENCY SAMPLE PROGRAM

CEMENT AND CONCRETE REFERENCE LABORATORY PROFICIENCY SAMPLE PROGRAM CEMENT AND CONCRETE REFERENCE LABORATORY PROFICIENCY SAMPLE PROGRAM Final Report ASR ASTM C1260 Proficiency Samples Number 5 and Number 6 August 2018 www.ccrl.us www.ccrl.us August 24, 2018 TO: Participants

More information

Lecture 2. Review of Linear Regression I Statistics Statistical Methods II. Presented January 9, 2018

Lecture 2. Review of Linear Regression I Statistics Statistical Methods II. Presented January 9, 2018 Review of Linear Regression I Statistics 211 - Statistical Methods II Presented January 9, 2018 Estimation of The OLS under normality the OLS Dan Gillen Department of Statistics University of California,

More information

From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here.

From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here. From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here. About this Book... ix About the Author... xiii Acknowledgments...xv Chapter 1 Introduction...

More information

Level of service model for exclusive motorcycle lane

Level of service model for exclusive motorcycle lane 387 Level of service model for exclusive motorcycle lane Seyed Farzin Faezi, Hussain Hamid, Sulistyo Arintono and Seyed Rasoul Davoodi Dept. of Civil Engineering, University Putra Malaysia, 43400, UPM

More information

1 - Inventory regime changes: An application of Hamilton s state space model

1 - Inventory regime changes: An application of Hamilton s state space model GLOBAL INSIGHT S WORLD ECONOMIC OUTLOOK CONFERENCE Washington D.C., October 26 1 - Inventory regime changes: An application of Hamilton s state space model 2 Steel Demand Trends: To focus on main drivers

More information

Voting Draft Standard

Voting Draft Standard page 1 of 7 Voting Draft Standard EL-V1M4 Sections 1.7.1 and 1.7.2 March 2013 Description This proposed standard is a modification of EL-V1M4-2009-Rev1.1. The proposed changes are shown through tracking.

More information

Preface... xi. A Word to the Practitioner... xi The Organization of the Book... xi Required Software... xii Accessing the Supplementary Content...

Preface... xi. A Word to the Practitioner... xi The Organization of the Book... xi Required Software... xii Accessing the Supplementary Content... Contents Preface... xi A Word to the Practitioner... xi The Organization of the Book... xi Required Software... xii Accessing the Supplementary Content... xii Chapter 1 Introducing Partial Least Squares...

More information

DEFECT DISTRIBUTION IN WELDS OF INCOLOY 908

DEFECT DISTRIBUTION IN WELDS OF INCOLOY 908 PSFC/RR-10-8 DEFECT DISTRIBUTION IN WELDS OF INCOLOY 908 Jun Feng August 10, 2010 Plasma Science and Fusion Center Massachusetts Institute of Technology Cambridge, MA 02139, USA This work was supported

More information

a. Uji kenormalan data model sebaran suhu pada band 7 citra tahun 2001 b. Uji kenormalan data model sebaran suhu pada band 4 citra tahun 2006

a. Uji kenormalan data model sebaran suhu pada band 7 citra tahun 2001 b. Uji kenormalan data model sebaran suhu pada band 4 citra tahun 2006 Dependent Variable: Suhu Regression Standardized Residual of Plot P-P Normal Dependent Variable: Suhu Regression Standardized Residual of Plot P-P Normal Lampiran 1. Hasil Uji Normalitas a. Uji kenormalan

More information

The Degrees of Freedom of Partial Least Squares Regression

The Degrees of Freedom of Partial Least Squares Regression The Degrees of Freedom of Partial Least Squares Regression Dr. Nicole Krämer TU München 5th ESSEC-SUPELEC Research Workshop May 20, 2011 My talk is about...... the statistical analysis of Partial Least

More information

ANALYSIS OF TRAFFIC SPEEDS IN NEW YORK CITY. Austin Krauza BDA 761 Fall 2015

ANALYSIS OF TRAFFIC SPEEDS IN NEW YORK CITY. Austin Krauza BDA 761 Fall 2015 ANALYSIS OF TRAFFIC SPEEDS IN NEW YORK CITY Austin Krauza BDA 761 Fall 2015 Problem Statement How can Amazon Web Services be used to conduct analysis of large scale data sets? Data set contains over 80

More information

Fuel Consumption Models for Tractor Test Reports

Fuel Consumption Models for Tractor Test Reports University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln Biological Systems Engineering: Papers and Publications Biological Systems Engineering 2017 Fuel Consumption Models for

More information

Supplementary Material to:

Supplementary Material to: Supplementary Material to: Statitical tests against systematic errors in data sets based on the equality of residual means and variances from control samples: Theory and Applications Julian Henn *a and

More information

Chapter 5 ESTIMATION OF MAINTENANCE COST PER HOUR USING AGE REPLACEMENT COST MODEL

Chapter 5 ESTIMATION OF MAINTENANCE COST PER HOUR USING AGE REPLACEMENT COST MODEL Chapter 5 ESTIMATION OF MAINTENANCE COST PER HOUR USING AGE REPLACEMENT COST MODEL 87 ESTIMATION OF MAINTENANCE COST PER HOUR USING AGE REPLACEMENT COST MODEL 5.1 INTRODUCTION Maintenance is usually carried

More information