Introduction to Time Series (I)

Size: px
Start display at page:

Download "Introduction to Time Series (I)"

Transcription

1 Introduction to Time Series (I) ZHANG RONG Department of Social Networking Operations Social Networking Group Tencent Company November 20, 2017 ZHANG RONG Introduction to Time Series (I) 1/69

2 Outline 1 Time Series Algorithms 2 Control Chart Theory 3 Opprentice System 4 TSFRESH python package ZHANG RONG Introduction to Time Series (I) 2/69

3 Outline 1 Time Series Algorithms 2 Control Chart Theory 3 Opprentice System 4 TSFRESH python package ZHANG RONG Introduction to Time Series (I) 3/69

4 Time Series Definition and Methods Definition of Time Series A time series is a series of data points indexed in time order. Methods for time series analysis may be divided into two classes: Frequency-domain methods: spectral analysis and wavelet analysis; Time-domain methods: auto-correlation and cross-correlation analysis. Methods of Time Series Methods for time series analysis may be divided into another two classes: Parametic methods Non-parametic methods ZHANG RONG Introduction to Time Series (I) 4/69

5 Moving Average Moving Average Let {x i : i 1} be an observed data sequence. A simple moving average (SMA) is the unweighted mean of the previous w data. If the w-days values are x i, x i 1,...,x i (w 1),thentheformulais M i = 1 w wx 1 j=0 x i j = x i + x i x i (w 1). w When calculating successive values, a new value comes into the sum and an old value drops out, that means M i = M i 1 + x i w x i w w. ZHANG RONG Introduction to Time Series (I) 5/69

6 Moving Average Figure: Moving Average Method for w =5 ZHANG RONG Introduction to Time Series (I) 6/69

7 Cumulative Moving Average Cumulative Moving Average Let {x i : i 1} be an observed data sequence. A cumulative moving average is the unweighted mean of all datas. If the w-days values are x 1,, x i,then CMA i = x x i. i If we have a new value x i+1, then the cumulative moving average is CMA i+1 = x x i + x i+1 i +1 = x i+1 + n CMA i i +1 = CMA i + x i+1 CMA i. i +1 ZHANG RONG Introduction to Time Series (I) 7/69

8 Weighted Moving Average Weighted Moving Average A weighted moving average is the weighted mean of the previous w-datas. Suppose P w 1 j=0 weight j =1withallweight j 0, then the weighted moving average is WMA i = wx 1 j=0 weight j x i j. ZHANG RONG Introduction to Time Series (I) 8/69

9 Weighted Moving Average ASpecialCase In particular, let {weight j :0apple j apple w 1} be a weight with w j weight j = for 0 apple j apple w 1. w +(w 1) + +1 In this situation, WMA i = wx i +(w 1)x i x i w+2 + x i w+1. w +(w 1) + +1 Figure: WMA weights w = 15 ZHANG RONG Introduction to Time Series (I) 9/69

10 Weighted Moving Average ASpecialCase Weighted Moving Average Suppose Total i = x i + + x i w+1, Numerator i = wx i +(w 1)x i x i w+1, then the update formulas are Total i+1 = Total i + x i+1 x i w+1, Numerator i+1 = Numerator i + wx i+1 Total i, Numerator i+1 WMA i+1 = w +(w 1) ZHANG RONG Introduction to Time Series (I) 10/69

11 Exponential Weighted Moving Average Exponential Weighted Moving Average Suppose {Y t : t 1} is an observed data sequence, the exponential weighted moving average series {S t : t 1} is defined as ( Y 1, t =1 S t = Y t 1 +(1 ) S t 1, t 2 2 [0, 1] is a constant smoothing factor. Y t is the observed value at a time period t. S t is the value of the EMWA at any time period t. ZHANG RONG Introduction to Time Series (I) 11/69

12 Exponential Weighted Moving Average Moreover, from above definition, S t = [Y t 1 +(1 )Y t 2 + +(1 ) k Y t (k+1) ] +(1 ) k+1 S t (k+1) for any suitable k 2 {0, 1, 2, }. The weight of the point Y t (1 ) i 1. i is Figure: EMA weights k = 20 ZHANG RONG Introduction to Time Series (I) 12/69

13 Exponential Weighted Moving Average Exponential Weighted Moving Average Suppose {Y t : t 1} is an observed data sequence, the alternated exponential weighted moving average series {S t : t 1} is defined as ( Y 1, t =1 S t,alternate = Y t +(1 ) S t 1,alternate, t 2 Here, we use Y t instead of Y t 1. ZHANG RONG Introduction to Time Series (I) 13/69

14 Exponential Weighted Moving Average Figure: Exponential Weighted Moving Average Method for = 0.6 ZHANG RONG Introduction to Time Series (I) 14/69

15 Double Exponential Smoothing Double Exponential Smoothing Suppose {Y t : t 1} is an observed data sequence, there are two equations associated with double exponential smoothing: S t = Y t +(1 )(S t 1 + b t 1 ), b t = (S t S t 1 )+(1 )b t 1, where 2 [0, 1] is the data smoothing factor and trend smoothing factor. 2 [0, 1] is the ZHANG RONG Introduction to Time Series (I) 15/69

16 Double Exponential Smoothing Double Exponential Smoothing Here, the initial values are S 1 = Y 1 and b 1 has three possibilities: b 1 = Y 2 Y 1, b 1 = (Y 2 Y 1 )+(Y 3 Y 2 )+(Y 4 Y 3 ) 3 b 1 = Y n Y 1 n 1. = Y 4 Y 1, 3 Forecast The one-period-ahead forecast is given by F t+1 = S t + b t. The m-period-ahead forecast is given by F t+m = S t + mb t. ZHANG RONG Introduction to Time Series (I) 16/69

17 Double Exponential Smoothing Figure: Double Exponential Smoothing for = 0.6 and = 0.4 ZHANG RONG Introduction to Time Series (I) 17/69

18 Triple Exponential Smoothing Multiplicative Seasonality Triple Exponential Smoothing (Multiplicative Seasonality) Suppose {Y t : t 1} is an observed data sequence, then the triple exponential smoothing is S t = Y t +(1 )(S t 1 + b t 1 ), Overall Smoothing c t L b t = (S t S t 1 )+(1 )b t 1, Trend Smoothing Y t c t = +(1 )c t L, Seasonal Smoothing S t where 2 [0, 1] is the data smoothing factor, 2 [0, 1] is the trend smoothing factor, 2 [0, 1] is the seasonal change smoothing factor. ZHANG RONG Introduction to Time Series (I) 18/69

19 Triple Exponential Smoothing Multiplicative Seasonality Forcast The m-period-ahead forecast is given by F t+m =(S t + mb t )c (t L+m) mod L. Triple Exponential Smoothing Initial values are S 1 = Y 1, b 0 = (Y L+1 Y 1 )+(Y L+2 Y 2 )+ +(Y L+L Y L ), L c i = 1 NX Y L(j 1)+i, 8i 2 {1,, L}, N A j = j=1 P L i=1 Y L(j L A j 1)+i, 8j 2 {1,, N}. ZHANG RONG Introduction to Time Series (I) 19/69

20 Triple Exponential Smoothing Additive Seasonality Triple Exponential Smoothing (Additive Seasonality) Suppose {Y t : t 1} is an observed data sequence, then the triple exponential smoothing is S t = (Y t c t L )+(1 )(S t 1 + b t 1 ), Overall Smoothing b t = (S t S t 1 )+(1 )b t 1, Trend Smoothing c t = (Y t S t 1 b t 1 )+(1 )c t L, Seasonal Smoothing where 2 [0, 1] is the data smoothing factor, 2 [0, 1] is the trend smoothing factor, 2 [0, 1] is the seasonal change smoothing factor. The m-period-ahead forecast is given by F t+m = S t + mb t + c (t L+m) mod L. ZHANG RONG Introduction to Time Series (I) 20/69

21 Outline 1 Time Series Algorithms 2 Control Chart Theory 3 Opprentice System 4 TSFRESH python package ZHANG RONG Introduction to Time Series (I) 21/69

22 Definition of Control Chart Theory Control Chart The control chart is a graphical display of a quality characteristic that has been measured from a sample versus the sample number or time. Center Line: the average value of the quality characteristic Upper Control Limit (UCL) and Lower Control Limit (LCL): two horizontal lines. ZHANG RONG Introduction to Time Series (I) 22/69

23 3 Control Chart Simplest Control Chart 3 Control Chart Suppose that w is a sample statistic that measures some quality characteristic, the mean of w is µ w and the standard deviation of w is w.thenthecenterline, the upper control limit and the lower control limit becomes: UCL = µ w + L w Center line = µ w LCL = µ w L w where L is the distance of the control limits from the center line, expressed in standard deviation units. In particular, if L = 3, then it is the 3 control chart. ZHANG RONG Introduction to Time Series (I) 23/69

24

25 3 Control Chart Simplest Control Chart Figure: How the control chart works ZHANG RONG Introduction to Time Series (I) 24/69

26 The Cumulative Sum Control Chart CUSUM Control Chart Let x i be the i-th observation on the process {x i :1applei apple n}, {x i :1applei apple n} has a normal distribution with mean µ and standard deviation.thecumulativesumcontrol chart is calculated by, for all 1 apple i apple n, C i = ix (x j µ 0 )=C i 1 +(x i µ 0 ), j=1 where C 0 =0andµ 0 is the target for the process mean. If C i exceed the decision interval H, thentheprocessis considered to be out of control. The decision interval H is 3 or 5. ZHANG RONG Introduction to Time Series (I) 25/69

27 The Cumulative Sum Control Chart Data for the Cusum Example ZHANG RONG Introduction to Time Series (I) 26/69

28 The Cumulative Sum Control Chart The first 20 of these observations were drawn at random from a normal distribution with µ = 10 and standard deviation = 1. They are plotted on a Shewhart control chart. Figure: A Shewhart control chart for the data ZHANG RONG Introduction to Time Series (I) 27/69

29 The Cumulative Sum Control Chart Figure: Plot of the cumulative sum from column (c) in above table ZHANG RONG Introduction to Time Series (I) 28/69

30 The Cumulative Sum Control Chart Comparison to three-sigma control limit Di erence Three-sigma control limit: one or more points beyond a three-sigma control limit CUSUM control limit: it is a good choice when small shifts are important. ZHANG RONG Introduction to Time Series (I) 29/69

31 The Tabular or Algorithmic Cusum Let x i be the i-th observation on the process {x i :1applei apple n}, it has mean µ 0 and standard deviation.thestatisticsc + and C are computed as follows: C + i = max 0, x i (µ 0 + K)+C + i 1 C i = max 0, (µ 0 K) x i + C i 1 where C + 0 = C 0 = 0. K is the reference value, is calculated as K = µ 1 µ 0, where µ 1 = µ 0 + and =1. 2 If either C + i or C i exceed the decision interval H =5,the process is considered to be out of control. Here and H are parameters. ZHANG RONG Introduction to Time Series (I) 30/69

32 The Tabular or Algorithmic Cusum ZHANG RONG Introduction to Time Series (I) 31/69

33 The Tabular or Algorithmic Cusum Figure: CUSUM status charts for the above example ZHANG RONG Introduction to Time Series (I) 32/69

34 EWMA Control Chart Exponentially Weighted Moving Average Control Chart EWMA The exponentially weighted moving average is defined as z i = x i +(1 )z i 1, where 0 apple apple 1 is a constant and z 0 = µ 0.Here,µ 0 is the process target. In particular, z 0 = x. Moreover, z i = Xi 1 (1 ) j x i j +(1 ) i z 0, j=0 and the sum of their weights is one. That means Xi 1 (1 ) j +(1 ) i =1. j=0 ZHANG RONG Introduction to Time Series (I) 33/69

35 EWMA Control Chart Figure: Weights of past sample means ZHANG RONG Introduction to Time Series (I) 34/69

36 EWMA Control Chart Exponentially Weighted Moving Average Control Chart EWMA Control Chart If the observations x i are independent random variables with variance 2, then the variance of z i is 2 z i = 2 1 (1 ) [1 2i (1 ) 2i ]. The EWMA control chart is UCL = µ 0 + L Center Line = µ 0, LCL = µ 0 L s (2 ) [1 (1 )2i ], s (2 ) [1 (1 )2i ]. ZHANG RONG Introduction to Time Series (I) 35/69

37 EWMA Control Chart Exponentially Weighted Moving Average Control Chart EWMA Control Chart Note that the term [1 (1 ) 2i ]tendsto1asi tends to 1, then the simplified EWMA control chart is s UCL = µ 0 + L (2 ), Center Line = µ 0, s LCL = µ 0 L (2 ). ZHANG RONG Introduction to Time Series (I) 36/69

38 EWMA Control Chart ZHANG RONG Introduction to Time Series (I) 37/69

39 EWMA Control Chart Figure: The EWMA control chart for the above example ZHANG RONG Introduction to Time Series (I) 38/69

40 Moving Average Control Chart Moving Average Control Chart Suppose that the observations are {x 1,, x n },thenthemoving average of span w at time i is defined as M i = x i + x i x i w+1. w The variance of the moving average M i is V (M i )= 1 w 2 ix j=i w+1 V (x j )= 1 w 2 ix j=i w+1 2 = 2 w. ZHANG RONG Introduction to Time Series (I) 39/69

41 Moving Average Control Chart Moving Average Control Chart Let µ 0 be the target value and the moving average control chart for M i are UCL = µ p w, Center Line = µ 0, LCL = µ 0 3 pw. The control procedure would consist of calculating the new moving average M i as each observation x i becomes available, plotting M i on a control chart with upper and lower control limits, and concluding that the process is out of control if M i exceeds the limits. ZHANG RONG Introduction to Time Series (I) 40/69

42 Moving Average Control Chart ZHANG RONG Introduction to Time Series (I) 41/69

43 Moving Average Control Chart Figure: Moving average control chart with w = 5 ZHANG RONG Introduction to Time Series (I) 42/69

44 Multivariate Data Control Chart The Multivariate Process Monitoring and Control Multivariate Data Control Chart Hotelling T 2 Control Chart The Multivariate EWMA Control Chart Regression Adjustment Principal Components Method Partial Least Squares ZHANG RONG Introduction to Time Series (I) 43/69

45 Outline 1 Time Series Algorithms 2 Control Chart Theory 3 Opprentice System 4 TSFRESH python package ZHANG RONG Introduction to Time Series (I) 60/69

46 TSFRESH python package TSFRESH python package tsfresh is used to to extract characteristics from time series. Paper: Time Series Feature extraction based on scalable hypothesis tests Spend less time on feature engineering Automatic extraction of 100s of features ZHANG RONG Introduction to Time Series (I) 61/69

47 TSFRESH python package TSFRESH python package Let {x 1,, x n } be a time series, some features are max, min, median, mean µ, variance 2, standard deviation, range is maximum minus minimum skewness is the third standardized moment: nx xi µ 3 skewness =, i=1 kurtosis is the fourth standardized moment: nx xi µ 4 kurtosis =. i=1 ZHANG RONG Introduction to Time Series (I) 62/69

48 TSFRESH python package TSFRESH python package Let {x 1,, x n } be a time series, some features are absolute energy: E = P n i=1 x 2 i, absolute sum of changes: E = P n 1 i=1 x i+1 x i, aggregate autocorrelation: 1 n 1 nx `=1 1 (n `) 2 Xn ` (x t µ)(x t+` µ), t=1 autocorrelation: parameter is lag `, 1 (n `) 2 Xn ` (x t µ)(x t+` µ). t=1 ZHANG RONG Introduction to Time Series (I) 63/69

49 TSFRESH python package TSFRESH python package Let {x 1,, x n } be a time series, some features are count above mean, count below mean variance larger than standard deviation first location of maximum, first location of minimum last location of maximum, last location of minimum has duplicate, has duplicate max, has duplicate min longest strike above mean, longest strike below mean ZHANG RONG Introduction to Time Series (I) 64/69

50 TSFRESH python package TSFRESH python package Let {x 1,, x n } be a time series, some features are mean change: P n 1 i=1 (x i+1 x i )/n =(x n x 1 )/n mean second derivative central: 1 Xn 2 1 n 2 (x i+2 2 x i+1 + x i ) i=1 percentage of reoccurring data points to all data points percentage of reoccurring values to all values ratio value number to time series length sum of reoccurring data points sum of reoccurring values ZHANG RONG Introduction to Time Series (I) 65/69

51 TSFRESH python package Initialization of Time Series Let {x 1,, x n } be a time series, some initialization methods are, for 1 apple i apple n, y i = y i = y i = y i = x i mean({x i :1apple i apple n}), x i median({x i :1apple i apple n}), x i max min, x i (max min)/10, where max and min denotes the maximum and minimum value of the time series, respectively. ZHANG RONG Introduction to Time Series (I) 66/69

52 TSFRESH python package Example of Two Lists ZHANG RONG Introduction to Time Series (I) 67/69

53 TSFRESH python package Features of the Above Two Lists ZHANG RONG Introduction to Time Series (I) 68/69

54 Thank you for watching! ZHANG RONG zr9558.wordpress.com ZHANG RONG Introduction to Time Series (I) 69/69

First Semester Dr. Abed Schokry SQC Chapter 9: Cumulative Sum and Exponential Weighted Moving Average Control Charts

First Semester Dr. Abed Schokry SQC Chapter 9: Cumulative Sum and Exponential Weighted Moving Average Control Charts Department of Industrial Engineering First Semester 2014-2015 Dr. Abed Schokry SQC Chapter 9: Cumulative Sum and Exponential Weighted Moving Average Control Charts Learning Outcomes After completing this

More information

Monitoring and data filtering III. The Kalman Filter and its relation with the other methods

Monitoring and data filtering III. The Kalman Filter and its relation with the other methods Monitoring and data filtering III. The Kalman Filter and its relation with the other methods Advanced Herd Management Cécile Cornou, IPH Dias 1 Gain (g) Before this part of the course Compare key figures

More information

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) Spring 2008

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 2.830J / 6.780J / ESD.63J Control of Processes (SMA 6303) Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

arxiv: v1 [stat.me] 14 Jan 2019

arxiv: v1 [stat.me] 14 Jan 2019 arxiv:1901.04443v1 [stat.me] 14 Jan 2019 An Approach to Statistical Process Control that is New, Nonparametric, Simple, and Powerful W.J. Conover, Texas Tech University, Lubbock, Texas V. G. Tercero-Gómez,Tecnológico

More information

Quality Control & Statistical Process Control (SPC)

Quality Control & Statistical Process Control (SPC) Quality Control & Statistical Process Control (SPC) DR. RON FRICKER PROFESSOR & HEAD, DEPARTMENT OF STATISTICS DATAWORKS CONFERENCE, MARCH 22, 2018 Agenda Some Terminology & Background SPC Methods & Philosophy

More information

Glossary. The ISI glossary of statistical terms provides definitions in a number of different languages:

Glossary. The ISI glossary of statistical terms provides definitions in a number of different languages: Glossary The ISI glossary of statistical terms provides definitions in a number of different languages: http://isi.cbs.nl/glossary/index.htm Adjusted r 2 Adjusted R squared measures the proportion of the

More information

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) Spring 2008

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 2.830J / 6.780J / ESD.63J Control of Processes (SMA 6303) Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/term

More information

Faculty of Science and Technology MASTER S THESIS

Faculty of Science and Technology MASTER S THESIS Faculty of Science and Technology MASTER S THESIS Study program/ Specialization: Spring semester, 20... Open / Restricted access Writer: Faculty supervisor: (Writer s signature) External supervisor(s):

More information

Statistical Methods in HYDROLOGY CHARLES T. HAAN. The Iowa State University Press / Ames

Statistical Methods in HYDROLOGY CHARLES T. HAAN. The Iowa State University Press / Ames Statistical Methods in HYDROLOGY CHARLES T. HAAN The Iowa State University Press / Ames Univariate BASIC Table of Contents PREFACE xiii ACKNOWLEDGEMENTS xv 1 INTRODUCTION 1 2 PROBABILITY AND PROBABILITY

More information

Statistical Methods: Introduction, Applications, Histograms, Ch

Statistical Methods: Introduction, Applications, Histograms, Ch Outlines Statistical Methods: Introduction, Applications, Histograms, Characteristics November 4, 2004 Outlines Part I: Statistical Methods: Introduction and Applications Part II: Statistical Methods:

More information

The Robustness of the Multivariate EWMA Control Chart

The Robustness of the Multivariate EWMA Control Chart The Robustness of the Multivariate EWMA Control Chart Zachary G. Stoumbos, Rutgers University, and Joe H. Sullivan, Mississippi State University Joe H. Sullivan, MSU, MS 39762 Key Words: Elliptically symmetric,

More information

Multivariate Control and Model-Based SPC

Multivariate Control and Model-Based SPC Multivariate Control and Model-Based SPC T 2, evolutionary operation, regression chart. 1 Multivariate Control Often, many variables must be controlled at the same time. Controlling p independent parameters

More information

Chapter 9 Time-Weighted Control Charts. Statistical Quality Control (D. C. Montgomery)

Chapter 9 Time-Weighted Control Charts. Statistical Quality Control (D. C. Montgomery) Chapter 9 Time-Weighted Control Charts 許湘伶 Statistical Quality Control (D. C. Montgomery) Introduction I Shewhart control chart: Chap. 5 7: basic SPC methods Useful in phase I implementation( 完成 ) of SPC

More information

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) Spring 2008

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Contents. Preface to Second Edition Preface to First Edition Abbreviations PART I PRINCIPLES OF STATISTICAL THINKING AND ANALYSIS 1

Contents. Preface to Second Edition Preface to First Edition Abbreviations PART I PRINCIPLES OF STATISTICAL THINKING AND ANALYSIS 1 Contents Preface to Second Edition Preface to First Edition Abbreviations xv xvii xix PART I PRINCIPLES OF STATISTICAL THINKING AND ANALYSIS 1 1 The Role of Statistical Methods in Modern Industry and Services

More information

Measures of Central Tendency and their dispersion and applications. Acknowledgement: Dr Muslima Ejaz

Measures of Central Tendency and their dispersion and applications. Acknowledgement: Dr Muslima Ejaz Measures of Central Tendency and their dispersion and applications Acknowledgement: Dr Muslima Ejaz LEARNING OBJECTIVES: Compute and distinguish between the uses of measures of central tendency: mean,

More information

Linear Profile Forecasting using Regression Analysis

Linear Profile Forecasting using Regression Analysis Proceedings of the 2012 International Conference on Industrial Engineering and Operations Management Istanbul, Turkey, July 3 6, 2012 Linear Profile Forecasting using Regression Analysis Hamideh Razavi

More information

Scenario 5: Internet Usage Solution. θ j

Scenario 5: Internet Usage Solution. θ j Scenario : Internet Usage Solution Some more information would be interesting about the study in order to know if we can generalize possible findings. For example: Does each data point consist of the total

More information

Research Article On the Charting Procedures: T 2 Chart and DD-Diagram

Research Article On the Charting Procedures: T 2 Chart and DD-Diagram Quality, Statistics, and Reliability Volume 2, Article ID 83764, 8 pages doi:.55/2/83764 Research Article On the Charting Procedures: T 2 Chart and DD-Diagram Mekki Hajlaoui Faculté des Sciences Economiques

More information

Practical Statistics for the Analytical Scientist Table of Contents

Practical Statistics for the Analytical Scientist Table of Contents Practical Statistics for the Analytical Scientist Table of Contents Chapter 1 Introduction - Choosing the Correct Statistics 1.1 Introduction 1.2 Choosing the Right Statistical Procedures 1.2.1 Planning

More information

Surveillance of Infectious Disease Data using Cumulative Sum Methods

Surveillance of Infectious Disease Data using Cumulative Sum Methods Surveillance of Infectious Disease Data using Cumulative Sum Methods 1 Michael Höhle 2 Leonhard Held 1 1 Institute of Social and Preventive Medicine University of Zurich 2 Department of Statistics University

More information

Total Quality Management (TQM)

Total Quality Management (TQM) Total Quality Management (TQM) Use of statistical techniques for controlling and improving quality and their integration in the management system Statistical Process Control (SPC) Univariate and multivariate

More information

Multivariate Process Control Chart for Controlling the False Discovery Rate

Multivariate Process Control Chart for Controlling the False Discovery Rate Industrial Engineering & Management Systems Vol, No 4, December 0, pp.385-389 ISSN 598-748 EISSN 34-6473 http://dx.doi.org/0.73/iems.0..4.385 0 KIIE Multivariate Process Control Chart for Controlling e

More information

SCIENCE & TECHNOLOGY

SCIENCE & TECHNOLOGY Pertanika J. Sci. & Technol. 24 (1): 177-189 (2016) SCIENCE & TECHNOLOGY Journal homepage: http://www.pertanika.upm.edu.my/ A Comparative Study of the Group Runs and Side Sensitive Group Runs Control Charts

More information

Data reduction for multivariate analysis

Data reduction for multivariate analysis Data reduction for multivariate analysis Using T 2, m-cusum, m-ewma can help deal with the multivariate detection cases. But when the characteristic vector x of interest is of high dimension, it is difficult

More information

A Theoretically Appropriate Poisson Process Monitor

A Theoretically Appropriate Poisson Process Monitor International Journal of Performability Engineering, Vol. 8, No. 4, July, 2012, pp. 457-461. RAMS Consultants Printed in India A Theoretically Appropriate Poisson Process Monitor RYAN BLACK and JUSTIN

More information

Statistical Methods for Forecasting

Statistical Methods for Forecasting Statistical Methods for Forecasting BOVAS ABRAHAM University of Waterloo JOHANNES LEDOLTER University of Iowa John Wiley & Sons New York Chichester Brisbane Toronto Singapore Contents 1 INTRODUCTION AND

More information

Descriptive Statistics

Descriptive Statistics Descriptive Statistics CHAPTER OUTLINE 6-1 Numerical Summaries of Data 6- Stem-and-Leaf Diagrams 6-3 Frequency Distributions and Histograms 6-4 Box Plots 6-5 Time Sequence Plots 6-6 Probability Plots Chapter

More information

Multi-Variate-Attribute Quality Control (MVAQC)

Multi-Variate-Attribute Quality Control (MVAQC) by Submitted in total fulfillment of the requirements of the degree of Doctor of Philosophy July 2014 Department of Mechanical Engineering The University of Melboune Abstract When the number of quality

More information

Total No. of Questions : 10] [Total No. of Pages : 02. M.Sc. DEGREE EXAMINATION, DEC Second Year STATISTICS. Statistical Quality Control

Total No. of Questions : 10] [Total No. of Pages : 02. M.Sc. DEGREE EXAMINATION, DEC Second Year STATISTICS. Statistical Quality Control (DMSTT21) Total No. of Questions : 10] [Total No. of Pages : 02 M.Sc. DEGREE EXAMINATION, DEC. 2016 Second Year STATISTICS Statistical Quality Control Time : 3 Hours Maximum Marks : 70 Answer any five

More information

Module B1: Multivariate Process Control

Module B1: Multivariate Process Control Module B1: Multivariate Process Control Prof. Fugee Tsung Hong Kong University of Science and Technology Quality Lab: http://qlab.ielm.ust.hk I. Multivariate Shewhart chart WHY MULTIVARIATE PROCESS CONTROL

More information

Unsupervised Learning Methods

Unsupervised Learning Methods Structural Health Monitoring Using Statistical Pattern Recognition Unsupervised Learning Methods Keith Worden and Graeme Manson Presented by Keith Worden The Structural Health Monitoring Process 1. Operational

More information

Monitoring and data filtering II. Dan Jensen IPH, KU

Monitoring and data filtering II. Dan Jensen IPH, KU Monitoring and data filtering II Dan Jensen IPH, KU Outline Introduction to Dynamic Linear Models (DLM) - Conceptual introduction - Difference between the Classical methods and DLM - A very simple DLM

More information

Robust control charts for time series data

Robust control charts for time series data Robust control charts for time series data Christophe Croux K.U. Leuven & Tilburg University Sarah Gelper Erasmus University Rotterdam Koen Mahieu K.U. Leuven Abstract This article presents a control chart

More information

STATISTICS ( CODE NO. 08 ) PAPER I PART - I

STATISTICS ( CODE NO. 08 ) PAPER I PART - I STATISTICS ( CODE NO. 08 ) PAPER I PART - I 1. Descriptive Statistics Types of data - Concepts of a Statistical population and sample from a population ; qualitative and quantitative data ; nominal and

More information

Frequency Forecasting using Time Series ARIMA model

Frequency Forecasting using Time Series ARIMA model Frequency Forecasting using Time Series ARIMA model Manish Kumar Tikariha DGM(O) NSPCL Bhilai Abstract In view of stringent regulatory stance and recent tariff guidelines, Deviation Settlement mechanism

More information

THE PRINCIPLES AND PRACTICE OF STATISTICS IN BIOLOGICAL RESEARCH. Robert R. SOKAL and F. James ROHLF. State University of New York at Stony Brook

THE PRINCIPLES AND PRACTICE OF STATISTICS IN BIOLOGICAL RESEARCH. Robert R. SOKAL and F. James ROHLF. State University of New York at Stony Brook BIOMETRY THE PRINCIPLES AND PRACTICE OF STATISTICS IN BIOLOGICAL RESEARCH THIRD E D I T I O N Robert R. SOKAL and F. James ROHLF State University of New York at Stony Brook W. H. FREEMAN AND COMPANY New

More information

Applied Probability and Stochastic Processes

Applied Probability and Stochastic Processes Applied Probability and Stochastic Processes In Engineering and Physical Sciences MICHEL K. OCHI University of Florida A Wiley-Interscience Publication JOHN WILEY & SONS New York - Chichester Brisbane

More information

A MACRO FOR MULTIVARIATE STATISTICAL PROCESS CONTROL

A MACRO FOR MULTIVARIATE STATISTICAL PROCESS CONTROL A MACRO FOR MULTIVARIATE STATISTICAL PROCESS CONTROL Meng-Koon Chua, Arizona State University Abstract The usefulness of multivariate statistical process control techniques has been received a tremendous

More information

Forecasting. Chapter Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall

Forecasting. Chapter Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall Forecasting Chapter 15 15-1 Chapter Topics Forecasting Components Time Series Methods Forecast Accuracy Time Series Forecasting Using Excel Time Series Forecasting Using QM for Windows Regression Methods

More information

MA30118: MANAGEMENT STATISTICS Assessed Coursework: Quality Control. x ji and r j = max(x ji ) min(x ji ).

MA30118: MANAGEMENT STATISTICS Assessed Coursework: Quality Control. x ji and r j = max(x ji ) min(x ji ). 1. (a) For each j, Hence, MA0118: MANAGEMENT STATISTICS Assessed Coursework: Quality Control x j = 1 i=1 x ji and r j = max(x ji ) min(x ji ). i i x 21 = 170.9744 = 4.19488, r 21 = 4.2240 4.1760 = 0.0480,

More information

Distribution-Free Monitoring of Univariate Processes. Peihua Qiu 1 and Zhonghua Li 1,2. Abstract

Distribution-Free Monitoring of Univariate Processes. Peihua Qiu 1 and Zhonghua Li 1,2. Abstract Distribution-Free Monitoring of Univariate Processes Peihua Qiu 1 and Zhonghua Li 1,2 1 School of Statistics, University of Minnesota, USA 2 LPMC and Department of Statistics, Nankai University, China

More information

Chart types and when to use them

Chart types and when to use them APPENDIX A Chart types and when to use them Pie chart Figure illustration of pie chart 2.3 % 4.5 % Browser Usage for April 2012 18.3 % 38.3 % Internet Explorer Firefox Chrome Safari Opera 35.8 % Pie chart

More information

2 D wavelet analysis , 487

2 D wavelet analysis , 487 Index 2 2 D wavelet analysis... 263, 487 A Absolute distance to the model... 452 Aligned Vectors... 446 All data are needed... 19, 32 Alternating conditional expectations (ACE)... 375 Alternative to block

More information

STP 420 INTRODUCTION TO APPLIED STATISTICS NOTES

STP 420 INTRODUCTION TO APPLIED STATISTICS NOTES INTRODUCTION TO APPLIED STATISTICS NOTES PART - DATA CHAPTER LOOKING AT DATA - DISTRIBUTIONS Individuals objects described by a set of data (people, animals, things) - all the data for one individual make

More information

Q3) a) Explain the construction of np chart. b) Write a note on natural tolerance limits and specification limits.

Q3) a) Explain the construction of np chart. b) Write a note on natural tolerance limits and specification limits. (DMSTT 21) Total No. of Questions : 10] [Total No. of Pages : 02 M.Sc. DEGREE EXAMINATION, MAY 2017 Second Year STATISTICS Statistical Quality Control Time : 3 Hours Maximum Marks: 70 Answer any Five questions.

More information

Z score indicates how far a raw score deviates from the sample mean in SD units. score Mean % Lower Bound

Z score indicates how far a raw score deviates from the sample mean in SD units. score Mean % Lower Bound 1 EDUR 8131 Chat 3 Notes 2 Normal Distribution and Standard Scores Questions Standard Scores: Z score Z = (X M) / SD Z = deviation score divided by standard deviation Z score indicates how far a raw score

More information

An Investigation of Combinations of Multivariate Shewhart and MEWMA Control Charts for Monitoring the Mean Vector and Covariance Matrix

An Investigation of Combinations of Multivariate Shewhart and MEWMA Control Charts for Monitoring the Mean Vector and Covariance Matrix Technical Report Number 08-1 Department of Statistics Virginia Polytechnic Institute and State University, Blacksburg, Virginia January, 008 An Investigation of Combinations of Multivariate Shewhart and

More information

ASSIGNMENT - 1 M.Sc. DEGREE EXAMINATION, MAY 2019 Second Year STATISTICS. Statistical Quality Control MAXIMUM : 30 MARKS ANSWER ALL QUESTIONS

ASSIGNMENT - 1 M.Sc. DEGREE EXAMINATION, MAY 2019 Second Year STATISTICS. Statistical Quality Control MAXIMUM : 30 MARKS ANSWER ALL QUESTIONS ASSIGNMENT - 1 Statistical Quality Control (DMSTT21) Q1) a) Explain the role and importance of statistical quality control in industry. b) Explain control charts for variables. Write the LCL, UCL for X,

More information

TIME SERIES ANALYSIS. Forecasting and Control. Wiley. Fifth Edition GWILYM M. JENKINS GEORGE E. P. BOX GREGORY C. REINSEL GRETA M.

TIME SERIES ANALYSIS. Forecasting and Control. Wiley. Fifth Edition GWILYM M. JENKINS GEORGE E. P. BOX GREGORY C. REINSEL GRETA M. TIME SERIES ANALYSIS Forecasting and Control Fifth Edition GEORGE E. P. BOX GWILYM M. JENKINS GREGORY C. REINSEL GRETA M. LJUNG Wiley CONTENTS PREFACE TO THE FIFTH EDITION PREFACE TO THE FOURTH EDITION

More information

Application of Multivariate Statistical Quality Control In Pharmaceutical Industry

Application of Multivariate Statistical Quality Control In Pharmaceutical Industry BALKANJM 0 (03) 93-05 Contents lists available at BALKANJM BALKAN JOURNAL OF MAHEMAICS journal homepage: www.balkanjm.com Application of Multivariate Statistical Quality Control In Pharmaceutical Industry

More information

IE 361 Exam 1 October 2004 Prof. Vardeman

IE 361 Exam 1 October 2004 Prof. Vardeman October 5, 004 IE 6 Exam Prof. Vardeman. IE 6 students Demerath, Gottschalk, Rodgers and Watson worked with a manufacturer on improving the consistency of several critical dimensions of a part. One of

More information

FORECASTING METHODS AND APPLICATIONS SPYROS MAKRIDAKIS STEVEN С WHEELWRIGHT. European Institute of Business Administration. Harvard Business School

FORECASTING METHODS AND APPLICATIONS SPYROS MAKRIDAKIS STEVEN С WHEELWRIGHT. European Institute of Business Administration. Harvard Business School FORECASTING METHODS AND APPLICATIONS SPYROS MAKRIDAKIS European Institute of Business Administration (INSEAD) STEVEN С WHEELWRIGHT Harvard Business School. JOHN WILEY & SONS SANTA BARBARA NEW YORK CHICHESTER

More information

Time Series and Forecasting

Time Series and Forecasting Time Series and Forecasting Introduction to Forecasting n What is forecasting? n Primary Function is to Predict the Future using (time series related or other) data we have in hand n Why are we interested?

More information

APPENDIX 1 BASIC STATISTICS. Summarizing Data

APPENDIX 1 BASIC STATISTICS. Summarizing Data 1 APPENDIX 1 Figure A1.1: Normal Distribution BASIC STATISTICS The problem that we face in financial analysis today is not having too little information but too much. Making sense of large and often contradictory

More information

On Efficient Memory-Type Control Charts for Monitoring out of Control Signals in a Process Using Diabetic Data

On Efficient Memory-Type Control Charts for Monitoring out of Control Signals in a Process Using Diabetic Data Biomedical Statistics and Informatics 017; (4): 138-144 http://www.sciencepublishinggroup.com/j/bsi doi: 10.11648/j.bsi.017004.1 On Efficient Memory-Type Control Charts for Monitoring out of Control Signals

More information

Measures of. U4 C 1.2 Dot plot and Histogram 2 January 15 16, 2015

Measures of. U4 C 1.2 Dot plot and Histogram 2 January 15 16, 2015 U4 C 1. Dot plot and Histogram January 15 16, 015 U 4 : C 1.1 CCSS. 9 1.S ID.1 Dot Plots and Histograms Objective: We will be able to represent data with plots on the real number line, using: Dot Plots

More information

Section II: Assessing Chart Performance. (Jim Benneyan)

Section II: Assessing Chart Performance. (Jim Benneyan) Section II: Assessing Chart Performance (Jim Benneyan) 1 Learning Objectives Understand concepts of chart performance Two types of errors o Type 1: Call an in-control process out-of-control o Type 2: Call

More information

Summary statistics. G.S. Questa, L. Trapani. MSc Induction - Summary statistics 1

Summary statistics. G.S. Questa, L. Trapani. MSc Induction - Summary statistics 1 Summary statistics 1. Visualize data 2. Mean, median, mode and percentiles, variance, standard deviation 3. Frequency distribution. Skewness 4. Covariance and correlation 5. Autocorrelation MSc Induction

More information

CIVL 7012/8012. Collection and Analysis of Information

CIVL 7012/8012. Collection and Analysis of Information CIVL 7012/8012 Collection and Analysis of Information Uncertainty in Engineering Statistics deals with the collection and analysis of data to solve real-world problems. Uncertainty is inherent in all real

More information

The increasing intensity of the strongest tropical cyclones

The increasing intensity of the strongest tropical cyclones The increasing intensity of the strongest tropical cyclones James B. Elsner Department of Geography, Florida State University Tallahassee, Florida Corresponding author address: Dept. of Geography, The

More information

6. Process or Product Monitoring and Control

6. Process or Product Monitoring and Control 6. Process or Product Monitoring and Control 6. Process or Product Monitoring and Control This chapter presents techniques for monitoring and controlling processes and signaling when corrective actions

More information

Distribution Fitting (Censored Data)

Distribution Fitting (Censored Data) Distribution Fitting (Censored Data) Summary... 1 Data Input... 2 Analysis Summary... 3 Analysis Options... 4 Goodness-of-Fit Tests... 6 Frequency Histogram... 8 Comparison of Alternative Distributions...

More information

Institute of Actuaries of India

Institute of Actuaries of India Institute of Actuaries of India Subject CT3 Probability and Mathematical Statistics For 2018 Examinations Subject CT3 Probability and Mathematical Statistics Core Technical Syllabus 1 June 2017 Aim The

More information

Control of Manufacturing Processes

Control of Manufacturing Processes Control of Manufacturing Processes Subject 2.830 Spring 2004 Lecture #8 Hypothesis Testing and Shewhart Charts March 2, 2004 3/2/04 Lecture 8 D.E. Hardt, all rights reserved 1 Applying Statistics to Manufacturing:

More information

Time Series and Forecasting

Time Series and Forecasting Time Series and Forecasting Introduction to Forecasting n What is forecasting? n Primary Function is to Predict the Future using (time series related or other) data we have in hand n Why are we interested?

More information

Graphical Techniques Stem and Leaf Box plot Histograms Cumulative Frequency Distributions

Graphical Techniques Stem and Leaf Box plot Histograms Cumulative Frequency Distributions Class #8 Wednesday 9 February 2011 What did we cover last time? Description & Inference Robustness & Resistance Median & Quartiles Location, Spread and Symmetry (parallels from classical statistics: Mean,

More information

A Short Course in Basic Statistics

A Short Course in Basic Statistics A Short Course in Basic Statistics Ian Schindler November 5, 2017 Creative commons license share and share alike BY: C 1 Descriptive Statistics 1.1 Presenting statistical data Definition 1 A statistical

More information

ARIMA Modelling and Forecasting

ARIMA Modelling and Forecasting ARIMA Modelling and Forecasting Economic time series often appear nonstationary, because of trends, seasonal patterns, cycles, etc. However, the differences may appear stationary. Δx t x t x t 1 (first

More information

MTH302 Quiz # 4. Solved By When a coin is tossed once, the probability of getting head is. Select correct option:

MTH302 Quiz # 4. Solved By When a coin is tossed once, the probability of getting head is. Select correct option: MTH302 Quiz # 4 Solved By konenuchiha@gmail.com When a coin is tossed once, the probability of getting head is. 0.55 0.52 0.50 (1/2) 0.51 Suppose the slope of regression line is 20 and the intercept is

More information

Variations in a manufacturing process can be categorized into common cause and special cause variations. In the presence of

Variations in a manufacturing process can be categorized into common cause and special cause variations. In the presence of Research Article (wileyonlinelibrary.com) DOI: 10.1002/qre.1514 Published online in Wiley Online Library Memory-Type Control Charts for Monitoring the Process Dispersion Nasir Abbas, a * Muhammad Riaz

More information

Midwest Big Data Summer School: Introduction to Statistics. Kris De Brabanter

Midwest Big Data Summer School: Introduction to Statistics. Kris De Brabanter Midwest Big Data Summer School: Introduction to Statistics Kris De Brabanter kbrabant@iastate.edu Iowa State University Department of Statistics Department of Computer Science June 20, 2016 1/27 Outline

More information

Ø Set of mutually exclusive categories. Ø Classify or categorize subject. Ø No meaningful order to categorization.

Ø Set of mutually exclusive categories. Ø Classify or categorize subject. Ø No meaningful order to categorization. Statistical Tools in Evaluation HPS 41 Fall 213 Dr. Joe G. Schmalfeldt Types of Scores Continuous Scores scores with a potentially infinite number of values. Discrete Scores scores limited to a specific

More information

Last Lecture. Distinguish Populations from Samples. Knowing different Sampling Techniques. Distinguish Parameters from Statistics

Last Lecture. Distinguish Populations from Samples. Knowing different Sampling Techniques. Distinguish Parameters from Statistics Last Lecture Distinguish Populations from Samples Importance of identifying a population and well chosen sample Knowing different Sampling Techniques Distinguish Parameters from Statistics Knowing different

More information

Analysis and Design of One- and Two-Sided Cusum Charts with Known and Estimated Parameters

Analysis and Design of One- and Two-Sided Cusum Charts with Known and Estimated Parameters Georgia Southern University Digital Commons@Georgia Southern Electronic Theses & Dissertations Graduate Studies, Jack N. Averitt College of Spring 2007 Analysis and Design of One- and Two-Sided Cusum Charts

More information

STATISTICS; An Introductory Analysis. 2nd hidition TARO YAMANE NEW YORK UNIVERSITY A HARPER INTERNATIONAL EDITION

STATISTICS; An Introductory Analysis. 2nd hidition TARO YAMANE NEW YORK UNIVERSITY A HARPER INTERNATIONAL EDITION 2nd hidition TARO YAMANE NEW YORK UNIVERSITY STATISTICS; An Introductory Analysis A HARPER INTERNATIONAL EDITION jointly published by HARPER & ROW, NEW YORK, EVANSTON & LONDON AND JOHN WEATHERHILL, INC.,

More information

A Multivariate EWMA Control Chart for Skewed Populations using Weighted Variance Method

A Multivariate EWMA Control Chart for Skewed Populations using Weighted Variance Method OPEN ACCESS Int. Res. J. of Science & Engineering, 04; Vol. (6): 9-0 ISSN: 3-005 RESEARCH ARTICLE A Multivariate EMA Control Chart for Skewed Populations using eighted Variance Method Atta AMA *, Shoraim

More information

b) Explain about charts for attributes and explain their uses. 4) a) Distinguish the difference between CUSUM charts and Shewartz control charts.

b) Explain about charts for attributes and explain their uses. 4) a) Distinguish the difference between CUSUM charts and Shewartz control charts. ASSIGNMENT - 1, DEC - 2016. PAPER- I : STATISTICAL QUALITY CONTROL (DMSTT 21) 1) a) Explain about Midrange control chart and median control chart. b) Explain about average run length for X chart. 2) a)

More information

Cyclical Effect, and Measuring Irregular Effect

Cyclical Effect, and Measuring Irregular Effect Paper:15, Quantitative Techniques for Management Decisions Module- 37 Forecasting & Time series Analysis: Measuring- Seasonal Effect, Cyclical Effect, and Measuring Irregular Effect Principal Investigator

More information

THE DETECTION OF SHIFTS IN AUTOCORRELATED PROCESSES WITH MR AND EWMA CHARTS

THE DETECTION OF SHIFTS IN AUTOCORRELATED PROCESSES WITH MR AND EWMA CHARTS THE DETECTION OF SHIFTS IN AUTOCORRELATED PROCESSES WITH MR AND EWMA CHARTS Karin Kandananond, kandananond@hotmail.com Faculty of Industrial Technology, Rajabhat University Valaya-Alongkorn, Prathumthani,

More information

375 PU M Sc Statistics

375 PU M Sc Statistics 375 PU M Sc Statistics 1 of 100 193 PU_2016_375_E For the following 2x2 contingency table for two attributes the value of chi-square is:- 20/36 10/38 100/21 10/18 2 of 100 120 PU_2016_375_E If the values

More information

MCUSUM CONTROL CHART PROCEDURE: MONITORING THE PROCESS MEAN WITH APPLICATION

MCUSUM CONTROL CHART PROCEDURE: MONITORING THE PROCESS MEAN WITH APPLICATION Journal of Statistics: Advances in Theory and Applications Volume 6, Number, 206, Pages 05-32 Available at http://scientificadvances.co.in DOI: http://dx.doi.org/0.8642/jsata_700272 MCUSUM CONTROL CHART

More information

Fundamentals of Applied Probability and Random Processes

Fundamentals of Applied Probability and Random Processes Fundamentals of Applied Probability and Random Processes,nd 2 na Edition Oliver C. Ibe University of Massachusetts, LoweLL, Massachusetts ip^ W >!^ AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS

More information

Statistics 349(02) Review Questions

Statistics 349(02) Review Questions Statistics 349(0) Review Questions I. Suppose that for N = 80 observations on the time series { : t T} the following statistics were calculated: _ x = 10.54 C(0) = 4.99 In addition the sample autocorrelation

More information

Ø Set of mutually exclusive categories. Ø Classify or categorize subject. Ø No meaningful order to categorization.

Ø Set of mutually exclusive categories. Ø Classify or categorize subject. Ø No meaningful order to categorization. Statistical Tools in Evaluation HPS 41 Dr. Joe G. Schmalfeldt Types of Scores Continuous Scores scores with a potentially infinite number of values. Discrete Scores scores limited to a specific number

More information

1. AN INTRODUCTION TO DESCRIPTIVE STATISTICS. No great deed, private or public, has ever been undertaken in a bliss of certainty.

1. AN INTRODUCTION TO DESCRIPTIVE STATISTICS. No great deed, private or public, has ever been undertaken in a bliss of certainty. CIVL 3103 Approximation and Uncertainty J.W. Hurley, R.W. Meier 1. AN INTRODUCTION TO DESCRIPTIVE STATISTICS No great deed, private or public, has ever been undertaken in a bliss of certainty. - Leon Wieseltier

More information

Preface Introduction to Statistics and Data Analysis Overview: Statistical Inference, Samples, Populations, and Experimental Design The Role of

Preface Introduction to Statistics and Data Analysis Overview: Statistical Inference, Samples, Populations, and Experimental Design The Role of Preface Introduction to Statistics and Data Analysis Overview: Statistical Inference, Samples, Populations, and Experimental Design The Role of Probability Sampling Procedures Collection of Data Measures

More information

A Simulation Study Of The Impact Of Forecast Recovery For Control Charts Applied To ARMA Processes

A Simulation Study Of The Impact Of Forecast Recovery For Control Charts Applied To ARMA Processes Journal of Modern Applied Statistical Methods Volume 1 Issue 2 Article 43 11-1-2002 A Simulation Study Of The Impact Of Forecast Recovery For Control Charts Applied To ARMA Processes John N. Dyer Georgia

More information

Nonlinear Regression. Summary. Sample StatFolio: nonlinear reg.sgp

Nonlinear Regression. Summary. Sample StatFolio: nonlinear reg.sgp Nonlinear Regression Summary... 1 Analysis Summary... 4 Plot of Fitted Model... 6 Response Surface Plots... 7 Analysis Options... 10 Reports... 11 Correlation Matrix... 12 Observed versus Predicted...

More information

Tastitsticsss? What s that? Principles of Biostatistics and Informatics. Variables, outcomes. Tastitsticsss? What s that?

Tastitsticsss? What s that? Principles of Biostatistics and Informatics. Variables, outcomes. Tastitsticsss? What s that? Tastitsticsss? What s that? Statistics describes random mass phanomenons. Principles of Biostatistics and Informatics nd Lecture: Descriptive Statistics 3 th September Dániel VERES Data Collecting (Sampling)

More information

Performance of Conventional X-bar Chart for Autocorrelated Data Using Smaller Sample Sizes

Performance of Conventional X-bar Chart for Autocorrelated Data Using Smaller Sample Sizes , 23-25 October, 2013, San Francisco, USA Performance of Conventional X-bar Chart for Autocorrelated Data Using Smaller Sample Sizes D. R. Prajapati Abstract Control charts are used to determine whether

More information

WILEY STRUCTURAL HEALTH MONITORING A MACHINE LEARNING PERSPECTIVE. Charles R. Farrar. University of Sheffield, UK. Keith Worden

WILEY STRUCTURAL HEALTH MONITORING A MACHINE LEARNING PERSPECTIVE. Charles R. Farrar. University of Sheffield, UK. Keith Worden STRUCTURAL HEALTH MONITORING A MACHINE LEARNING PERSPECTIVE Charles R. Farrar Los Alamos National Laboratory, USA Keith Worden University of Sheffield, UK WILEY A John Wiley & Sons, Ltd., Publication Preface

More information

Monitoring Production Processes Using Multivariate Control Charts

Monitoring Production Processes Using Multivariate Control Charts ISSN No: 239-4893 I Vol-4, Issue-4, August 216 Monitoring Production Processes Using Multivariate Control Charts Mohamed H. Abo-Hawa*, M. A. Sharaf El-Din**, Omayma A. Nada*** Department of Production

More information

Seasonal ARMA-based SPC charts for anomaly detection: Application to emergency department systems

Seasonal ARMA-based SPC charts for anomaly detection: Application to emergency department systems Seasonal ARMA-based SPC charts for anomaly detection: Application to emergency department systems Item Type Article Authors Kadri, Farid; Harrou, Fouzi; Chaabane, Sondès; Sun, Ying; Tahon, Christian Citation

More information

A Plot of the Tracking Signals Calculated in Exhibit 3.9

A Plot of the Tracking Signals Calculated in Exhibit 3.9 CHAPTER 3 FORECASTING 1 Measurement of Error We can get a better feel for what the MAD and tracking signal mean by plotting the points on a graph. Though this is not completely legitimate from a sample-size

More information

Evaluating Electricity Theft Detectors in Smart Grid Networks. Group 5:

Evaluating Electricity Theft Detectors in Smart Grid Networks. Group 5: Evaluating Electricity Theft Detectors in Smart Grid Networks Group 5: Ji, Xinyu Rivera, Asier Agenda Introduction Background Electricity Theft Detectors and Attacks Results Discussion Conclusion 2 Introduction

More information

Deccan Education Society s FERGUSSON COLLEGE, PUNE (AUTONOMOUS) SYLLABUS UNDER AUTONOMY. FIRST YEAR B.Sc.(Computer Science) SEMESTER I

Deccan Education Society s FERGUSSON COLLEGE, PUNE (AUTONOMOUS) SYLLABUS UNDER AUTONOMY. FIRST YEAR B.Sc.(Computer Science) SEMESTER I Deccan Education Society s FERGUSSON COLLEGE, PUNE (AUTONOMOUS) SYLLABUS UNDER AUTONOMY FIRST YEAR B.Sc.(Computer Science) SEMESTER I SYLLABUS FOR F.Y.B.Sc.(Computer Science) STATISTICS Academic Year 2016-2017

More information

Volatility. Gerald P. Dwyer. February Clemson University

Volatility. Gerald P. Dwyer. February Clemson University Volatility Gerald P. Dwyer Clemson University February 2016 Outline 1 Volatility Characteristics of Time Series Heteroskedasticity Simpler Estimation Strategies Exponentially Weighted Moving Average Use

More information

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303)

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) MIT OpenCourseWare http://ocw.mit.edu 2.830J / 6.780J / ESD.63J Control of Processes (SMA 6303) Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

CUMULATIVE SUM CHARTS FOR HIGH YIELD PROCESSES

CUMULATIVE SUM CHARTS FOR HIGH YIELD PROCESSES Statistica Sinica 11(2001), 791-805 CUMULATIVE SUM CHARTS FOR HIGH YIELD PROCESSES T. C. Chang and F. F. Gan Infineon Technologies Melaka and National University of Singapore Abstract: The cumulative sum

More information