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

Size: px
Start display at page:

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

Transcription

1 Regression nalysis lab 7 1 Indicator variables 1.1 Import data tool<-read.csv(file="d:/chilo/regression 7/tool.csv", header=t) tool life speed type scatter plot by group attach(tool) plot(speed, life, pch=16, col=c("red","blue")[type], xlab="lathe speed, x(rpm)", ylab="tool life, y(hours)", main="scatter plot") 1

2 Scatter plot tool life, y(hours) lathe speed, x(rpm) plot(speed, life, pch=16, type="n", xlab="lathe speed, x(rpm)", ylab="tool life, y(hours)", main="scatter plot") text(speed, life, type) 2

3 Scatter plot tool life, y(hours) lathe speed, x(rpm) 3 model 1 with y and x1 attach(tool) The following objects are masked from tool (position 3): tfit1 <- lm(life ~ speed, data=tool) summary(tfit1) Call: lm(formula = life ~ speed, data = tool) 3

4 Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) *** speed Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Residual standard error: 8.44 on 18 degrees of freedom Multiple R-squared: 0.186,djusted R-squared: F-statistic: 4.11 on 1 and 18 DF, p-value: tfit1$fit # fitted values tfit1$res # residuals summary(tfit1) Call: lm(formula = life ~ speed, data = tool) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) *** speed Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 4

5 Residual standard error: 8.44 on 18 degrees of freedom Multiple R-squared: 0.186,djusted R-squared: F-statistic: 4.11 on 1 and 18 DF, p-value: anova(tfit1) nalysis of Variance Table Response: life Df Sum Sq Mean Sq F value Pr(>F) speed Residuals Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 confint(tfit1, level=0.95) 2.5 % 97.5 % (Intercept) e+01 speed e-04 R2_1<-summary(tfit1)$r.squared R2_1 [1] R2.adj_1<-summary(tfit1)$adj.r.squared R2.adj_1 [1] sigmahat_1<-summary(tfit1)$sigma sigmahat_1 [1] 8.44 sigmahat2_1<-sigmahat_1^2 MSE_1<-sigmahat2_1 MSE_1 [1] plot(life ~ speed, pch=16, col=c("red","blue")[type], main="scatter plot") abline(reg=tfit1) 5

6 Scatter plot life speed plot(tfit1$fit,tfit1$res, pch=16, col=c("red","blue")[type], xlab="fitted",ylab="residuals", main="model 1 residual plot") 6

7 Model 1 residual plot Residuals Fitted 4 model 2 with y and x1, x2 attach(tool) The following objects are masked from tool (position 3): The following objects are masked from tool (position 4): tfit2 <- lm(life ~ speed + type, data=tool) summary(tfit2) 7

8 Call: lm(formula = life ~ speed + type, data = tool) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) e-09 *** speed e-05 *** type e-09 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Residual standard error: 3.04 on 17 degrees of freedom Multiple R-squared: 0.9,djusted R-squared: F-statistic: 76.7 on 2 and 17 DF, p-value: 3.09e-09 tfit2$fit # fitted values tfit2$res # residuals summary(tfit2) Call: lm(formula = life ~ speed + type, data = tool) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) 8

9 (Intercept) e-09 *** speed e-05 *** type e-09 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Residual standard error: 3.04 on 17 degrees of freedom Multiple R-squared: 0.9,djusted R-squared: F-statistic: 76.7 on 2 and 17 DF, p-value: 3.09e-09 anova(tfit2) nalysis of Variance Table Response: life Df Sum Sq Mean Sq F value Pr(>F) speed e-05 *** type e-09 *** Residuals Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 confint(tfit2, level=0.95) 2.5 % 97.5 % (Intercept) speed type R2_2<-summary(tfit2)$r.squared R2_2 [1] R2.adj_2<-summary(tfit2)$adj.r.squared R2.adj_2 [1] sigmahat_2<-summary(tfit2)$sigma sigmahat_2 [1] sigmahat2_2<-sigmahat_2^2 MSE_2<-sigmahat2_2 MSE_2 9

10 [1] beta.0<-summary(tfit2)$coef[1,1] beta.1<-summary(tfit2)$coef[2,1] beta.2<-summary(tfit2)$coef[3,1] beta.0 [1] beta.1 [1] beta.2 [1] 15 plot(life ~ speed, pch = 16,, col=c("red","blue")[type], main="scatter plot") abline(beta.0, beta.1, lty=2, col="red") abline(beta.0+beta.2, beta.1, lty=1, col="blue") legend(950, 42, c("", ""), col = c("red", "blue"), text.col = c("red", "blue"), lty = c(2, 1), pch = c(16, 16), merge = TRUE) 10

11 Scatter plot life speed plot(tfit2$fit,tfit2$res, pch=16, col=c("red","blue")[type], xlab="fitted",ylab="residuals", main="model 2 residual plot") 11

12 Model 2 residual plot Residuals Fitted t1<-rstudent(tfit2) t qqnorm(t1) qqline(t1) 12

13 Normal Q Q Plot Sample Quantiles Theoretical Quantiles 5 model 3 with y and x1, x2, x1x2 attach(tool) The following objects are masked from tool (position 3): The following objects are masked from tool (position 4): The following objects are masked from tool (position 5): tfit3 <- lm(life ~ speed + type + speed*type, data=tool) 13

14 summary(tfit3) Call: lm(formula = life ~ speed + type + speed * type, data = tool) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) e-06 *** speed ** type ** speed:type Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Residual standard error: 2.97 on 16 degrees of freedom Multiple R-squared: 0.91,djusted R-squared: F-statistic: 54.3 on 3 and 16 DF, p-value: 1.32e-08 tfit3$fit # fitted values tfit3$res # residuals summary(tfit3) Call: lm(formula = life ~ speed + type + speed * type, data = tool) Residuals: Min 1Q Median 3Q Max 14

15 Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) e-06 *** speed ** type ** speed:type Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Residual standard error: 2.97 on 16 degrees of freedom Multiple R-squared: 0.91,djusted R-squared: F-statistic: 54.3 on 3 and 16 DF, p-value: 1.32e-08 anova(tfit3) nalysis of Variance Table Response: life Df Sum Sq Mean Sq F value Pr(>F) speed e-05 *** type e-09 *** speed:type Residuals Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 confint(tfit3, level=0.95) 2.5 % 97.5 % (Intercept) speed type speed:type R2_3<-summary(tfit3)$r.squared R2_3 [1] R2.adj_3<-summary(tfit3)$adj.r.squared R2.adj_3 [1] sigmahat_3<-summary(tfit3)$sigma sigmahat_3 15

16 [1] sigmahat2_3<-sigmahat_3^2 MSE_3<-sigmahat2_3 MSE_3 [1] tool<-tool[type=="",] tool life speed type tool<-tool[type=="",] tool life speed type plot(life ~ speed, pch = 16,, col=c("red","blue")[type], main="scatter plot") abline(lm(tool$life ~ tool$speed), lty=2, col="red") abline(lm(tool$life ~ tool$speed), lty=1, col="blue") legend(950, 42, c("", ""), col = c("red", "blue"), text.col = c("red", "blue"), lty = c(2, 1), pch = c(16, 16), merge = TRUE) 16

17 Scatter plot life speed plot(tfit3$fit,tfit3$res, pch=16, col=c("red","blue")[type], xlab="fitted",ylab="residuals", main="model 3 residual plot") 17

18 Model 3 residual plot Residuals Fitted 6 partial F tests 6.1 test whether two regression lines are identical attach(tool) The following objects are masked from tool (position 3): The following objects are masked from tool (position 4): The following objects are masked from tool (position 5): 18

19 The following objects are masked from tool (position 6): tfit1 <- lm(life ~ speed, data=tool) # Reduced model tfit3 <- lm(life ~ speed + type + speed*type, data=tool) # Full model anova(tfit1,tfit3) nalysis of Variance Table Model 1: life ~ speed Model 2: life ~ speed + type + speed * type Res.Df RSS Df Sum of Sq F Pr(>F) e-08 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' test whether the slopes of two regression lines are equal attach(tool) The following objects are masked from tool (position 3): The following objects are masked from tool (position 4): The following objects are masked from tool (position 5): The following objects are masked from tool (position 6): The following objects are masked from tool (position 7): tfit2 <- lm(life ~ speed + type, data=tool) # Reduced model tfit3 <- lm(life ~ speed + type + speed*type, data=tool) # Full model anova(tfit2,tfit3) nalysis of Variance Table 19

20 Model 1: life ~ speed + type Model 2: life ~ speed + type + speed * type Res.Df RSS Df Sum of Sq F Pr(>F)

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

delivery<-read.csv(file=d:/chilo/regression 4/delivery.csv, header=t) delivery Regression Analysis lab 4 1 Model Adequacy Checking 1.1 Import data delivery

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

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

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

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

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

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

. 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

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

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

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

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

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

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

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

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

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 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

: ( .

: ( . 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

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

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

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

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

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

DATA SAMPEL TAHUN 2006

DATA SAMPEL TAHUN 2006 DATA SAMPEL TAHUN 2006 No Nama Emiten CGPI Kode Saham Harga Saham EPS PER Laba Bersih 1 Bank Niaga 89.27 BNGA 920 54 17.02 647,732 2 Bank Mandiri 83.66 BMRI 2,900 118 24.65 2,422,472 3 Astra International

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Daftar Sampel Perusahaan Pertambangan. 4 BORN Borneo Lumbung Energy & Metal, Tbk

Daftar Sampel Perusahaan Pertambangan. 4 BORN Borneo Lumbung Energy & Metal, Tbk Lampiran i Daftar Sampel Perusahaan Daftar Sampel Perusahaan Pertambangan No Kode Sampel 1 ADRO Adaro Energy, Tbk 2 ANTM Aneka Tambang (Persero), Tbk 3 ATPK ATPK Resources, Tbk 4 BORN Borneo Lumbung Energy

More information

Daftar Sampel Perusahaan

Daftar Sampel Perusahaan Lampiran i Daftar Sampel Perusahaan NAMA PERUSAHAAN PT. Bank Bukopin Tbk PT. Bank Bumi Arta Tbk PT. Bank Central Asia Tbk PT. Bank CIMB Niaga Tbk PT. Bank Danamon Indonesia Tbk PT. Bank Ekonomi Raharja

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

LAMPIRAN A. Tabulasi Data Perusahaan Sample

LAMPIRAN A. Tabulasi Data Perusahaan Sample LAMPIRAN A Tabulasi Data Perusahaan Sample Current Ratio (%) NO Kode Emiten Nama Perusahaan ASII Astra International Tbk. 2 AUTO Astra Otoparts Tbk. 3 BATA Sepatu Bata Tbk. 4 BRAM Indo Kordsa Tbk 5 BRNA

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

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

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

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

DATA PENELITIAN 1. CAR CAR (%)

DATA PENELITIAN 1. CAR CAR (%) DATA PENELITIAN. CAR No. Tahun Nama Bank CAR (%) Arta Niaga Kencana 2,8 2 Artha Graha 0,58 3 Asiatic -9,9 4 Danpac 25,74 5 Global International 42, 6 Harmoni 7,47 7 IFI 22,62 8 Bukopin 20,37 9 International

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

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

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 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

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

MODUL PELATIHAN SEM ANANDA SABIL HUSSEIN, PHD

MODUL PELATIHAN SEM ANANDA SABIL HUSSEIN, PHD MODUL PELATIHAN SEM ANANDA SABIL HUSSEIN, PHD PUSAT KAJIAN DAN PENGABDIAN MASYARAKAT JURUSAN MANAJEMEN UNIVERSITAS BRAWIJAYA 2018 1) 2) ANALISA JALUR 1) LMK = 27,209 3,599IPK + 1,749 x 10-7 US + 0,019JR

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

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

Lampiran i Jadwal Penelitian

Lampiran i Jadwal Penelitian Lampiran i Jadwal Penelitian Tahap penelitian Juni Juli Agust Sept Oktb Pengajuan Judul Penyetujuan proposal Penyelesain proposal Bimbingan skripisi 81 Lampiran i (lanjutan) Daftar Sampel Perusahaan Manufaktur

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

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

Team project 2017 Dony Pratidana S. Hum Bima Agus Setyawan S. IIP

Team project 2017 Dony Pratidana S. Hum Bima Agus Setyawan S. IIP Hak cipta dan penggunaan kembali: Lisensi ini mengizinkan setiap orang untuk menggubah, memperbaiki, dan membuat ciptaan turunan bukan untuk kepentingan komersial, selama anda mencantumkan nama penulis

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. Lampiran 1 Data Sampel Penelitian

LAMPIRAN. Lampiran 1 Data Sampel Penelitian LAMPIRAN Lampiran Data Sampel Penelitian Variabel Karakteristik Auditor pada Perusahaan Sampel Ukuran KAP No Kode 2 2 22 23 (Aryanto, Amir AGRO Jusuf, Mawar & Saptoto) 2 BABP 3 BACA 4 BAEK 5 BBCA 6 BBKP

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

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

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

Lampiran 1. Uji Validitas dan Reliability Variabel Kualitas Pelayanan

Lampiran 1. Uji Validitas dan Reliability Variabel Kualitas Pelayanan Lampira 1. Uji itas da Reliability Variabel Kualitas Pelayaa 1 Frequecy Percet Percet Percet Kurag setuju 14 14.1 14.1 14.1 Ragu-ragu 57 57.6 57.6 71.7 Setuju 24 24.2 24.2 96.0 Sagat Setuju 4 4.0 4.0 100.0

More information

QUALITY ASSURANCE & LAB ACCREDITATION

QUALITY ASSURANCE & LAB ACCREDITATION TOP 9 QUALITY ASSURANCE & LAB ACCREDITATION Control Charts Accreditation of laboratories 6./7.Dec 2011 Workshop ANKARA TOP 9 Quality 1 TOP 9 QUALITY ASSURANCE & LAB ACCREDITATION Control Charts Accreditation

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

THE PHYSICS OF THE PINEWOOD DERBY

THE PHYSICS OF THE PINEWOOD DERBY THE PHYSICS OF THE PINEWOOD DERBY TABLE OF CONTENTS CHAPTER 1 - INTRODUCTION... 1 CHAPTER 2 - CONSTANTS, PARAMETERS, AND VARIABLES 2.1 ENVIRONMENTAL CONSTANTS... 7 2.2 TRACK PARAMETERS... 8 2.2.1 The Standard

More information

Lampiran 1. Daftar Sampel Perusahaan

Lampiran 1. Daftar Sampel Perusahaan Lampiran 1. Daftar Sampel Perusahaan NO. KODE NAMA PERUSAHAAN 1 ARNA Arwana Citramulia Tbk. 2 ASII Astra Internastional Tbk. 3 AUTO Astra otoparts Tbk. 4 BTON Betonjaya Manunggal Tbk 5 DVLA Darya-Varia

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

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

Rata-Rata Nilai Debt to Equity Ratio (DER) Perusahaan Otomotif yang 0, ,97 0, ,44 1,9 1,6 1,4 1,7 1,65

Rata-Rata Nilai Debt to Equity Ratio (DER) Perusahaan Otomotif yang 0, ,97 0, ,44 1,9 1,6 1,4 1,7 1,65 Lampiran I Rata-Rata Nilai Debt to Equity Ratio (DER) Perusahaan Otomotif yang Terdaftar di Bursa Efek Indonesia Periode 2010-2013 DER No Kode Nama perusahaan 2010 2011 2012 2013 Rata-rata 1. ASII PT Astra

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

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

Introduction. Traffic data collection. Introduction. Introduction. Traffic stream parameters

Introduction. Traffic data collection. Introduction. Introduction. Traffic stream parameters Introduction Traffic data collection Transportation Systems Engineering Outline Point measurement Measurement over a short stretch Measurement over a long stretch Measurement over an area 20080813 Traffic

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

Data Nama Perusahaan Perbankan Yang Terdaftar Di BEI.

Data Nama Perusahaan Perbankan Yang Terdaftar Di BEI. LAMPIRAN Lampiran 1 Data Nama Perusahaan Perbankan Yang Terdaftar Di BEI. No Kode Perusahaan Nama Perusahaan 1 AGRO Bank Rakyat Indonesia Agroniaga Tbk 2 BMRI Bank Mandiri (Persero) Tbk 3 BMAS PT Bank

More information

ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH

ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH APPENDIX G ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH INTRODUCTION Studies on the effect of median width have shown that increasing width reduces crossmedian crashes, but the amount of reduction varies

More information

ENGINE VARIABLE IMPACT ANALYSIS OF FUEL USE AND EMISSIONS FOR HEAVY DUTY DIESEL MAINTENANCE EQUIPMENT

ENGINE VARIABLE IMPACT ANALYSIS OF FUEL USE AND EMISSIONS FOR HEAVY DUTY DIESEL MAINTENANCE EQUIPMENT ENGINE VARIABLE IMPACT ANALYSIS OF FUEL USE AND EMISSIONS FOR HEAVY DUTY DIESEL MAINTENANCE EQUIPMENT Phil Lewis, PhD, PE Oklahoma State University Heni Fitriani, PhD University of Sriwijaya (Indonesia)

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

EVALUATION OF CO-INJECTION MOLDING: AN ALTERNATIVE TO RECYCLING SCRAP PAINTED BUMPERS. Emily Cortright. Senior Honors Thesis

EVALUATION OF CO-INJECTION MOLDING: AN ALTERNATIVE TO RECYCLING SCRAP PAINTED BUMPERS. Emily Cortright. Senior Honors Thesis EVALUATION OF CO-INJECTION MOLDING: AN ALTERNATIVE TO RECYCLING SCRAP PAINTED BUMPERS by Emily Cortright Senior Honors Thesis The Ohio State University Submitted to the Department of Industrial, Welding,

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