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.

Size: px
Start display at page:

Download "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."

Transcription

1 R version ( ) Copyright (C) 2011 The R Foundation for Statistical Computing ISBN Platform: x86_64-pc-mingw32/x64 (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. 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. [Previously saved workspace restored] setwd("c:/") # t-test za sparene podatke (bodovi s prvog kolokvija) - svodi se na t-test za jedan uzorak bodovi=read.table("kolokvij1.dat") zad1=bodovi$v1 zad2=bodovi$v2 hist(zad1,breaks=seq(from=-0.5,by=3,length=7)) hist(zad2,breaks=seq(from=-0.5,by=3,length=7)) d=zad1-zad2 n=length(d) n [1] 63 xpotez=mean(d) xpotez [1] s=sd(d) s [1] t=xpotez*sqrt(n)/s t [1] pv=2*(1-pt(t,n-1)) pv [1] #provjera t.test(zad1,zad2,paired=t) Paired t-test data: zad1 and zad2 t = , df = 62, p-value = alternative hypothesis: true difference in means is not equal to 0 95 percent confidence interval:

2 sample estimates: mean of the differences # Jednofaktorski model podaci=read.table("vrpce.dat") kvaliteta=podaci$v1 premaz=factor(rep(letters[1:4],c(5,4,7,6))) premaz [1] A A A A A B B B B C C C C C C C D D D D D D Levels: D vrpce=data.frame(premaz,kvaliteta) vrpce premaz kvaliteta 1 A 10 2 A 15 3 A 8 4 A 12 5 A 15 6 B 14 7 B 18 8 B 21 9 B C C C C C C C D D D D D D 15 help(tapply) starting httpd help server... done ni=tapply(kvaliteta,premaz,length) ni D n=sum(ni) n [1] 22 lmean=tapply(kvaliteta,premaz,mean) lmean D plot(lmean,type="b") 2

3 lvar=tapply(kvaliteta,premaz,var) lvar D m=4 xpotez=crossprod(ni,lmean)/n xpotez [1,] 15 xpoteznovi=xpotez[1,1] sst=crossprod(ni,(lmean-xpoteznovi)^2) sst [1,] 68 sse=crossprod(ni-1,lvar) sse [1,] 94 mst=sst/(m-1) mst [1,] mse=sse/(n-m) mse [1,] f=mst/mse f [1,] qf(1-0.05,m-1,n-m) [1] pv=1-pf(f,m-1,n-m) pv [1,] q=(n-m)*log(mse)-sum((ni-1)*log(lvar)) h=1+(sum(1/(ni-1))-1/(n-m))/(3*(m-1)) b=q/h b [1,] pv=1-pchisq(b,m-1) pv [1,] #provjera anova(lm(kvaliteta~premaz)) Analysis of Variance Table Response: kvaliteta Df Sum Sq Mean Sq F value Pr(F) premaz * 3

4 Residuals Signif. codes: 0 *** ** 0.01 * bartlett.test(kvaliteta,premaz) Bartlett test of homogeneity of variances data: kvaliteta and premaz Bartlett's K-squared = 4.123, df = 3, p-value = # Dvofaktorski model podaci=read.table("gorivo.dat") potrosnja=podaci$v1 razred=factor(rep(1:5,c(9,9,9,9,9))) razred [1] [39] Levels: tmp=rep(letters[1:3],c(3,3,3)) tmp [1] "A" "A" "A" "B" "B" "B" "C" "C" "C" marka=factor(rep(tmp,5)) marka [1] A A A B B B C C C A A A B B B C C C A A A B B B C C C A A A B B B C C C A A [39] A B B B C C C Levels: gorivo=data.frame(razred,marka,potrosnja) gorivo razred marka potrosnja 1 1 A A A B B B C C C A A A B B B C C C A A A B 9.6 4

5 23 3 B B C C C A A A B B B C C C A A A B B B C C C 10.3 ni=tapply(potrosnja,list(razred,marka),length) ni n=sum(ni) n [1] 45 lmean=tapply(potrosnja,list(razred,marka),mean) lmean plot(lmean,type="b",ylim=c(8.5,11.5),col="blue") points(lmean[,2],type="b",col="green") points(lmean[,3],type="b",col="red") text(c(1,1,1),lmean[1,]+0.1,letters[1:3]) lvar=tapply(potrosnja,list(razred,marka),var) lvar

6 m1=5 m2=3 l=3 mi=apply(lmean,1,mean) mi mj=apply(lmean,2,mean) mj xpotez=mean(lmean) xpotez [1] sst1=m2*l*sum((mi-xpotez)^2) sst1 [1] sst2=m1*l*sum((mj-xpotez)^2) sst2 [1] sst12=0 for(i in 1:m1) + for(j in 1:m2) + sst12=sum(sst12,l*(lmean[i,j]-mi[i]-mj[j]+xpotez)^2) sst12 [1] sse=(l-1)*sum(lvar) sse [1] 1.16 mst1=sst1/(m1-1) mst1 [1] mst2=sst2/(m2-1) mst2 [1] mst12=sst12/((m1-1)*(m2-1)) mst12 [1] mse=sse/(m1*m2*(l-1)) mse [1] f1=mst1/mse f1 [1] f2=mst2/mse f2 [1] f12=mst12/mse f12 [1] pv1=1-pf(f1,m1-1,m1*m2*(l-1)) pv1 [1] e-16 pv2=1-pf(f2,m2-1,m1*m2*(l-1)) 6

7 pv2 [1] e-13 pv3=1-pf(f12,(m1-1)*(m2-1),m1*m2*(l-1)) pv3 [1] e-10 #provjera anova(lm(potrosnja~razred*marka)) Analysis of Variance Table Response: potrosnja Df Sum Sq Mean Sq F value Pr(F) razred e-16 *** marka e-13 *** razred:marka e-10 *** Residuals Signif. codes: 0 *** ** 0.01 *

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

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

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

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

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

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

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

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

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

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

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

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

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

MONTHLY NEW RESIDENTIAL SALES, AUGUST 2017

MONTHLY NEW RESIDENTIAL SALES, AUGUST 2017 FOR RELEASE AT 10:00 AM EDT, TUESDAY, SEPTEMBER 26, MONTHLY NEW RESIDENTIAL SALES, AUGUST Release Number: CB17-161 Notice: For information on the impact of Hurricanes Harvey and Irma on the compilation

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

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

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

Introduction to STR-validator

Introduction to STR-validator Introduction to STR-validator Oskar Hansson Statistical methods in forensic genetics 20-23 April 2015, Copenhagen EUROFORGEN-NoE is funded by the European Commission within the 7th Framework Programme

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

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

MEMORANDUM. Observational survey of car seat use, 2017

MEMORANDUM. Observational survey of car seat use, 2017 MEMORANDUM Darelis López Rosario, Esq. Executive Director Traffic Safety Commission Carlos Torija Estudios Técnicos, Inc. October 5, 2017 Observational survey of car seat use, 2017 The Traffic Safety Commission

More information

MONTHLY NEW RESIDENTIAL SALES, APRIL 2017

MONTHLY NEW RESIDENTIAL SALES, APRIL 2017 FOR RELEASE AT 10:00 AM EDT, TUESDAY, MAY 23, MONTHLY NEW RESIDENTIAL SALES, APRIL Release Number: CB17-80 May 23, - The U.S. Census Bureau and the U.S. Department of Housing and Urban Development jointly

More information

MONTHLY NEW RESIDENTIAL SALES, SEPTEMBER 2018

MONTHLY NEW RESIDENTIAL SALES, SEPTEMBER 2018 FOR RELEASE AT 10:00 AM EDT, WEDNESDAY, OCTOBER 24, MONTHLY NEW RESIDENTIAL SALES, SEPTEMBER Release Number: CB18 160 October 24, The U.S. Census Bureau and the U.S. Department of Housing and Urban Development

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

MONTHLY NEW RESIDENTIAL CONSTRUCTION, NOVEMBER 2017

MONTHLY NEW RESIDENTIAL CONSTRUCTION, NOVEMBER 2017 FOR RELEASE AT 8:30 AM EST, TUESDAY, DECEMBER 19, MONTHLY NEW RESIDENTIAL CONSTRUCTION, NOVEMBER Release Number: CB17-206 December 19, - The U.S. Census Bureau and the U.S. Department of Housing and Urban

More information

Support. EMROL Your power partner

Support. EMROL Your power partner Support Support Part one What is and how to use / upgrade the software / firmware / manual How to start a capacity test Interpreting the results after a test is finished Read out the results with the BITS-software

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

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

MONTHLY NEW RESIDENTIAL CONSTRUCTION, FEBRUARY 2017

MONTHLY NEW RESIDENTIAL CONSTRUCTION, FEBRUARY 2017 FOR RELEASE AT 8:30 AM EDT, THURSDAY, MARCH 16, MONTHLY NEW RESIDENTIAL CONSTRUCTION, FEBRUARY Release Number: CB17-38 March 16, - The U.S. Census Bureau and the U.S. Department of Housing and Urban Development

More information

Influence of motorcycles lane to the traffic volume and travel speed in Denpasar, Indonesia

Influence of motorcycles lane to the traffic volume and travel speed in Denpasar, Indonesia IOP Conference Series: Earth and Environmental Science PAPER OPEN ACCESS Influence of motorcycles lane to the traffic volume and travel speed in Denpasar, Indonesia To cite this article: A M Mulyadi 2018

More information

MONTHLY NEW RESIDENTIAL CONSTRUCTION, JULY 2017

MONTHLY NEW RESIDENTIAL CONSTRUCTION, JULY 2017 FOR RELEASE AT 8:30 AM EDT, WEDNESDAY, AUGUST 16, MONTHLY NEW RESIDENTIAL CONSTRUCTION, JULY Release Number: CB17-133 August 16, - The U.S. Census Bureau and the U.S. Department of Housing and Urban Development

More information

two populations are independent. What happens when the two populations are not independent?

two populations are independent. What happens when the two populations are not independent? PHP2500: Introduction to Biostatistics Lecture XI: Hypothesis Testing (cont.) 1 In previous lectures we have seen the procedures for hypothesis testing for population mean, or difference between two population

More information

MONTHLY NEW RESIDENTIAL CONSTRUCTION, APRIL 2017

MONTHLY NEW RESIDENTIAL CONSTRUCTION, APRIL 2017 FOR RELEASE AT 8:30 AM EDT, TUESDAY, MAY 16, MONTHLY NEW RESIDENTIAL CONSTRUCTION, APRIL Release Number: CB17-75 May 16, - The U.S. Census Bureau and the U.S. Department of Housing and Urban Development

More information

Tables. for Product Testing Methods. Revised January 2013

Tables. for Product Testing Methods. Revised January 2013 T Tables les for Product Testing Methods Revised January 2013 7629 Hull Street Road Richmond, VA 23235 PH: 804-675-2980 FX: 804-675-2983 Email: mail@ifpress.com www.ifpress.com TABLES BY SUBJECT page Table

More information

WF3132 User s Manual. AC rev D

WF3132 User s Manual. AC rev D AC0023-002 rev D WireFlow AB, December 2012 Contents Support information... 2 Technical support and Product information... 2 WireFlow headquarters... 2 Important information... 2 Copyright... 2 High risk

More information

MONTHLY NEW RESIDENTIAL CONSTRUCTION, AUGUST 2017

MONTHLY NEW RESIDENTIAL CONSTRUCTION, AUGUST 2017 FOR RELEASE AT 8:30 AM EDT, TUESDAY, SEPTEMBER 19, MONTHLY NEW RESIDENTIAL CONSTRUCTION, AUGUST Release Number: CB17-158 Notice: For information on the impact of Hurricanes Harvey and Irma on the compilation

More information

CAPSOL. Solar charge controller. New ViewStar series. Models. Features

CAPSOL. Solar charge controller. New ViewStar series.   Models. Features CAPSOL SOLAR ENERGY SYSTEMS PWM Solar charge controller New ViewStar series CAPSOL ViewStar series solar controller is designed for off-grid solar system, such as street light, solar home system or small

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

U.S. Census Bureau News Joint Release U.S. Department of Housing and Urban Development

U.S. Census Bureau News Joint Release U.S. Department of Housing and Urban Development Raemeka Mayo or Stephen Cooper Economic Indicators Division (301) 763-5160 FOR IMMEDIATE RELEASE TUESDAY, MAY 17, 2016 AT 8:30 A.M. EDT NEW RESIDENTIAL CONSTRUCTION IN APRIL 2016 The U.S. Census Bureau

More information

Post 50 km/h Implementation Driver Speed Compliance Western Australian Experience in Perth Metropolitan Area

Post 50 km/h Implementation Driver Speed Compliance Western Australian Experience in Perth Metropolitan Area Post 50 km/h Implementation Driver Speed Compliance Western Australian Experience in Perth Metropolitan Area Brian Kidd 1 (Presenter); Tony Radalj 1 1 Main Roads WA Biography Brian joined Main Roads in

More information

Spring Contact Probe CP6 - CP20B

Spring Contact Probe CP6 - CP20B Spring Contact Probe CP6 - CP0B CP6 - CP0B (Spring contact probe) more than million strokes (mm stroke, 60 strokes / 60 seconds) Thermal-endurance : 00ºC or below Fig Fig Fig CP6 - CP0B CP6 CP8 CP0

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

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

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

U.S. Census Bureau News Joint Release U.S. Department of Housing and Urban Development

U.S. Census Bureau News Joint Release U.S. Department of Housing and Urban Development Raemeka Mayo or Stephen Cooper Economic Indicators Division (01) 76-5160 FOR IMMEDIATE RELEASE TUESDAY, MARCH 17, 015 AT 8:0 A.M. EDT NEW RESIDENTIAL CONSTRUCTION IN FEBRUARY 015 The U.S. Census Bureau

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

TRINITY COLLEGE DUBLIN THE UNIVERSITY OF DUBLIN. Faculty of Engineering, Mathematics and Science. School of Computer Science and Statistics

TRINITY COLLEGE DUBLIN THE UNIVERSITY OF DUBLIN. Faculty of Engineering, Mathematics and Science. School of Computer Science and Statistics ST7003-1 TRINITY COLLEGE DUBLIN THE UNIVERSITY OF DUBLIN Faculty of Engineering, Mathematics and Science School of Computer Science and Statistics Postgraduate Certificate in Statistics Hilary Term 2015

More information

Solar inverter From Wikipedia, the free encyclopedia

Solar inverter From Wikipedia, the free encyclopedia Page 1 of 7 Solar inverter From Wikipedia, the free encyclopedia A solar inverter, or converter or PV inverter, converts the variable direct current (DC) output of a photovoltaic (PV) solar panel into

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

Frequently Asked Questions: EMC Captiva 7.5

Frequently Asked Questions: EMC Captiva 7.5 Frequently Asked Questions: EMC Captiva 7.5 Table of Contents What s New? Captiva Web Client Capture REST Services Migration/Upgrades Deprecated Modules Other Changes More Information What s New? Question:

More information

DRIVER SPEED COMPLIANCE WITHIN SCHOOL ZONES AND EFFECTS OF 40 PAINTED SPEED LIMIT ON DRIVER SPEED BEHAVIOURS Tony Radalj Main Roads Western Australia

DRIVER SPEED COMPLIANCE WITHIN SCHOOL ZONES AND EFFECTS OF 40 PAINTED SPEED LIMIT ON DRIVER SPEED BEHAVIOURS Tony Radalj Main Roads Western Australia DRIVER SPEED COMPLIANCE WITHIN SCHOOL ZONES AND EFFECTS OF 4 PAINTED SPEED LIMIT ON DRIVER SPEED BEHAVIOURS Tony Radalj Main Roads Western Australia ABSTRACT Two speed surveys were conducted on nineteen

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

A Battery Smart Sensor and Its SOC Estimation Function for Assembled Lithium-Ion Batteries

A Battery Smart Sensor and Its SOC Estimation Function for Assembled Lithium-Ion Batteries R1-6 SASIMI 2015 Proceedings A Battery Smart Sensor and Its SOC Estimation Function for Assembled Lithium-Ion Batteries Naoki Kawarabayashi, Lei Lin, Ryu Ishizaki and Masahiro Fukui Graduate School of

More information

This specification is approved for use by all Departments and Agencies of the Department of Defense.

This specification is approved for use by all Departments and Agencies of the Department of Defense. INCH-POUND MIL-PRF-39014/5F 16 September 1997 SUPERSEDING MIL-C-39014/5E 16 August 1978 PERFORMANCE SPECIFICATION SHEET CAPACITORS, FIXED, CERAMIC DIELECTRIC (GENERAL PURPOSE), ESTABLISHED RELIABILITY,

More information

U.S. Census Bureau News Joint Release U.S. Department of Housing and Urban Development

U.S. Census Bureau News Joint Release U.S. Department of Housing and Urban Development Raemeka Mayo or Stephen Cooper Economic Indicators Division (01) 76-5160 FOR IMMEDIATE RELEASE FRIDAY, JUNE 17, 016 AT 8:0 A.M. EDT NEW RESIDENTIAL CONSTRUCTION IN MAY 016 The U.S. Census Bureau and the

More information

U.S. Census Bureau News Joint Release U.S. Department of Housing and Urban Development

U.S. Census Bureau News Joint Release U.S. Department of Housing and Urban Development Raemeka Mayo or Stephen Cooper Economic Indicators Division (01) 76-5160 FOR IMMEDIATE RELEASE WEDNESDAY, MARCH 16, 016 AT 8:0 A.M. EDT NEW RESIDENTIAL CONSTRUCTION IN FEBRUARY 016 The U.S. Census Bureau

More information

To put integrity before opportunity To be passionate and persistent To encourage individuals to rise to the occasion

To put integrity before opportunity To be passionate and persistent To encourage individuals to rise to the occasion SignalQuest, based in New Hampshire, USA, designs and manufactures electronic sensors that measure tilt angle, acceleration, shock, vibration and movement as well as application specific inertial measurement

More information

1 st Quarter Summary of Meteorological and Ambient Air Quality Data Kennecott Utah Copper Monitoring Stations. Prepared for:

1 st Quarter Summary of Meteorological and Ambient Air Quality Data Kennecott Utah Copper Monitoring Stations. Prepared for: 1 st Quarter 2018 Summary of Meteorological and Ambient Air Quality Data Kennecott Utah Copper Monitoring Stations Prepared for: Prepared by: Mr. Bryce C. Bird Director Division of Air Quality 195 North

More information

I-95 high-risk driver analysis using multiple imputation methods

I-95 high-risk driver analysis using multiple imputation methods I-95 high-risk driver analysis using multiple imputation methods Kyla Marcoux Traffic Injury Research Foundation New Orleans, Louisiana July 26, 2010 Acknowledgements Authors: Robertson, R., Wood, K.,

More information

Operation Manual For NDJ-9S Digital Rotary Viscometer

Operation Manual For NDJ-9S Digital Rotary Viscometer Operation Manual For NDJ-9S Digital Rotary Viscometer 1 Contents 1. General... 2 2. Main technical data... 2 3. Working principle... 2 4. Installation... 3 5. Operation procedures... 4 6. Precautions...

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

ISO INTERNATIONAL STANDARD. Road vehicles Brake lining friction materials Friction behaviour assessment for automotive brake systems

ISO INTERNATIONAL STANDARD. Road vehicles Brake lining friction materials Friction behaviour assessment for automotive brake systems INTERNATIONAL STANDARD ISO 26867 First edition 2009-07-01 Road vehicles Brake lining friction materials Friction behaviour assessment for automotive brake systems Véhicules routiers Matériaux de friction

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

Rosemount 3095FT MultiVariable Flow Data Logger

Rosemount 3095FT MultiVariable Flow Data Logger Quick Installation Guide Rosemount 3095FT Rosemount 3095FT MultiVariable Flow Data Logger Step 1: Mount the Transmitter Step 2: Consider Housing Rotation Step 3: Set Jumpers and Switches Step 4: Connect

More information

RCFC & WCD RATIONAL METHOD CALCULATION FORM

RCFC & WCD RATIONAL METHOD CALCULATION FORM RCFC & WCD RATIONAL METHOD CALCULATION FORM HYDROLOGY MANUAL PROJECT: Tentative Tract Map No. 36952 Calculated by: TL Group Corp. Date: 7/2/2015 FREQUENCY: EXISTING 2 - YR STORM Checked by: Date: Drainage

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

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

Heavy Equipment Monitoring Solution. Remote Telecom Tower Monitoring Solutions

Heavy Equipment Monitoring Solution. Remote Telecom Tower Monitoring Solutions Heavy Equipment Monitoring Solution Remote Telecom Tower Monitoring Solutions Who and why should one read this? Who will benefit? Telecom companies owning telecom towers, like Vodafone, Airtel, Idea, TATA,

More information

of ROAD Abstract Keywords: acceleration Jussi Seppä control of a terminal box wirelessly via Bluetooth to shown in real surveyors.

of ROAD Abstract Keywords: acceleration Jussi Seppä control of a terminal box wirelessly via Bluetooth to shown in real surveyors. 6th International Symposium on Automation and Robotics in Constructionn (ISARC 009) Automation of ROAD Maintenance Development of a Roughness Measurement System for the Quality Control of Gravel Roads

More information

Rates of Motor Vehicle Crashes, Injuries, and Deaths in Relation to Driver Age, United States,

Rates of Motor Vehicle Crashes, Injuries, and Deaths in Relation to Driver Age, United States, RESEARCH BRIEF This Research Brief provides updated statistics on rates of crashes, injuries and death per mile driven in relation to driver age based on the most recent data available, from 2014-2015.

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

Understanding the Variation in Long-Term Solar Resource Estimates

Understanding the Variation in Long-Term Solar Resource Estimates Understanding the Variation in Long-Term Solar Resource Estimates Which Data Set Represents Your Project Site? Marie Schnitzer Senior Director, Solar and Investor Services Outline Purpose What is a P50?

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

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

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

In depth. Measurement of free-flow speed on the spanish road network. from the Observatory. Introduction

In depth. Measurement of free-flow speed on the spanish road network. from the Observatory.   Introduction In depth 1 First Quarter 1 from the Observatory MINISTERIO DEL INTERIOR Observatorio Nacional de Seguridad Vial www.dgt.es Measurement of free-flow speed on the spanish road network. Introduction This

More information

International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November ISSN

International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November ISSN International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 1970 Engineering Analysis of the Abouhenidi Gas Station in Yanbu Albahar Masters Project PREPARED BY Hamad

More information

Model 2500 Horsepower Computer System User Manual

Model 2500 Horsepower Computer System User Manual Model 2500 Horsepower Computer System User Manual Manufacturered by: Ries Labs, Inc. 2275 Raven Road Farina, IL 62838 Phone: (618) 238-1400 email: admin@rieslabs.com Table of Contents Description ----------------------------------------------------------------

More information

832 Series: Sulfur/Carbon Analysis by Combustion

832 Series: Sulfur/Carbon Analysis by Combustion 832 Series: Sulfur/Carbon Analysis by Combustion Delivering the Right Results 832 Series: Sulfur/Carbon Analysis by Combustion LECO's 832 Series will redefine the way you determine carbon and sulfur in

More information

Security. Hardware Specifications. Editor: Stephen Satchell. Version Security Hardware Specification version i Copyright 2012 INE, Inc.

Security. Hardware Specifications. Editor: Stephen Satchell. Version Security Hardware Specification version i Copyright 2012 INE, Inc. Security Hardware Specifications Editor: Stephen Satchell Version 5.006 Security Hardware Specification version 5.006 i Copyright 2012 INE, Inc. INE, Inc. 500 108th Ave NE Suite 510 Bellevue, WA 98004

More information

VSP 7.0: Remedial Investigations (RI) of UXO Prone Sites & Visual Sample Plan

VSP 7.0: Remedial Investigations (RI) of UXO Prone Sites & Visual Sample Plan VSP 7.0: Remedial Investigations (RI) of UXO Prone Sites & Visual Sample Plan J. Hathaway, Brent Pulsipher, John Wilson, Lisa Newburn Pacific Northwest National Laboratory M2S2 Webinar June 24, 2014 Outline

More information

Handling Instructions

Handling Instructions Handling Instructions CLS - Licensing of integration product (feature) OpenScape Contact Center Enterprise V8 History of Changes Ver. Released RDB# Changes 1.0 2010-03-01 3028 Initial Creation 1.1 2010-04-12

More information

The application of the 95% Confidence interval with ISAT and IMAGE

The application of the 95% Confidence interval with ISAT and IMAGE Confidence intervals are commonly applied in many fields using statistical analyses. The most commonly seen usage of confidence intervals is within political polls. In the case of a political poll, an

More information

RAY COMPACT ENERGY METER MECHANICAL

RAY COMPACT ENERGY METER MECHANICAL APPLICATION Fully electronic compact heat meter or compact cooling and heat meter with impeller scanning for recording energy and volume data. Highly accurate recording of all billing data in a heating

More information

Embedded Torque Estimator for Diesel Engine Control Application

Embedded Torque Estimator for Diesel Engine Control Application 2004-xx-xxxx Embedded Torque Estimator for Diesel Engine Control Application Peter J. Maloney The MathWorks, Inc. Copyright 2004 SAE International ABSTRACT To improve vehicle driveability in diesel powertrain

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

Bench and floor scale Midrics

Bench and floor scale Midrics Bench and floor scale Midrics The robust complete scale for reliable quality control The bench and floor scale Midrics has proven itself in a variety of industries such as the food, pharmaceutical, chemical,

More information

North Carolina End-of-Grade ELA/Reading Tests: Third and Fourth Edition Concordances

North Carolina End-of-Grade ELA/Reading Tests: Third and Fourth Edition Concordances North Carolina End-of-Grade ELA/Reading Tests: Third and Fourth Edition Concordances Alan Nicewander, Ph.D. Josh Goodman, Ph.D. Tia Sukin, Ed.D. Huey Dodson, B.S. Matthew Schulz, Ph.D. Susan Lottridge,

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

Vehicle Diagnostic Logging Device

Vehicle Diagnostic Logging Device UCCS SENIOR DESIGN Vehicle Diagnostic Logging Device Design Requirements Specification Prepared by Mackenzie Lowrance, Nick Hermanson, and Whitney Watson Sponsor: Tyson Hartshorn with New Planet Technologies

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

Digital-Control and Programmable DC Power Supply Models: , , , & User Manual

Digital-Control and Programmable DC Power Supply Models: , , , & User Manual Digital-Control and Programmable DC Power Supply Models: 72-2535, 72-2540, 72-2545, 72-2550 & 72-10480 User Manual Page 19/05/16 V1.0 Safety Symbols This chapter contains important safety instructions

More information

Municipal Licensing and Standards -

Municipal Licensing and Standards - LICENSING SERVICES PROGRAM MAP Municipal Licensing and Standards - Bylaw Business Licensing & Permitting Property Standards, Inspection & Compliance Animal Care, Control & Sheltering Licence and Permit

More information

Application. Battery. Public Grid GS HYBRID INVERTER

Application. Battery. Public Grid GS HYBRID INVERTER GS HYBRID SOLAR INVERTER Feed from Solar and Power, Grid backup, Build-in Transfer Switch / Solar Charger/ AC Charger, 500W~3kW, Pure Sine Wave Output GSH-15XX and GSH-30XX are the ideal solutions for

More information

FINAL REPORT AP STATISTICS CLASS DIESEL TRUCK COUNT PROJECT

FINAL REPORT AP STATISTICS CLASS DIESEL TRUCK COUNT PROJECT FINAL REPORT AP STATISTICS CLASS 2017-2018 DIESEL TRUCK COUNT PROJECT Authors: AP Statistics Class 2017-2018 Table of Contents SURVEY QUESTION...p. 2 AIR QUALITY...p. 3-4 TOTAL TRUCK COUNTS.p. 5 TRUCK

More information

Ride Smoothness Measurement and Specification Issues. Nicholas Vitillo, Ph. D. Manager, Bureau of Research New Jersey Department of Transportation

Ride Smoothness Measurement and Specification Issues. Nicholas Vitillo, Ph. D. Manager, Bureau of Research New Jersey Department of Transportation Ride Smoothness Measurement and Specification Issues Nicholas Vitillo, Ph. D. Manager, Bureau of Research New Jersey Department of Transportation Components of Pavement Smoothness Surface Tolerance deviations

More information

Safety Precautions Product Contents Product PIN Diagram LED indicators Product Dimensions Installation of Panel with Casing Wire Legend Power Wiring

Safety Precautions Product Contents Product PIN Diagram LED indicators Product Dimensions Installation of Panel with Casing Wire Legend Power Wiring www.zkteco.com Safety Precautions Product Contents Product PIN Diagram LED indicators Product Dimensions Installation of Panel with Casing Wire Legend Power Wiring Diagram FR1200 Connection Weigand Connection

More information

EC Timer Box Product Design for Six Sigma

EC Timer Box Product Design for Six Sigma EC Timer Box Product Design for Six Sigma Application of Product Customers: Whirlpool, Bosch, AEG, and others 2 Goals To Decrease the reject rate by a factor of 10 from 10% to less than 1% 3 Test machine

More information

Analog input module. Brief description. Page 1/8. Data Sheet

Analog input module. Brief description. Page 1/8. Data Sheet JUMO GmbH & Co. KG Delivery address:mackenrodtstraße 14, 36039 Fulda, Germany Postal address: 36035 Fulda, Germany Phone: +49 661 6003-0 Fax: +49 661 6003-607 e-mail: mail@jumo.net Internet: www.jumo.net

More information