Title: | Partition of Variation Variance Component Analysis Method |
---|---|
Description: | An implementation of the Partition Of variation (POV) method as developed by Dr. Thomas A Little <https://thomasalittleconsulting.com> in 1993 for the analysis of semiconductor data for hard drive manufacturing. POV is based on sequential sum of squares and is an exact method that explains all observed variation. It quantitates both the between and within factor variation effects and can quantitate the influence of both continuous and categorical factors. |
Authors: | Paul Deen [aut, cre] |
Maintainer: | Paul Deen <[email protected]> |
License: | GPL-3 |
Version: | 0.1.4 |
Built: | 2025-02-26 04:00:32 UTC |
Source: | https://github.com/paulantondeen/pov-r-package |
Looking at the effect of Machine and Metrology on the variation in the response.
dt
dt
A data frame with 54 rows and 3 variables:
3 Levels of different machines used for production
3 Levels of different metrology used for measurement
Measured value of the characteristic under investigation
Simulated data
Dataset for single factor variance component analysis, used in vignette
dt2
dt2
A data frame with 36 rows and 2 variables:
3 Level Factor
Measured value of the characteristic under investigation
Simulated data
Partition of Variation
POV(Formula, Data, Complete = FALSE)
POV(Formula, Data, Complete = FALSE)
Formula |
an object of class "formula" (or one that can be coerced to that class): a symbolic description of the model to be fitted. The details of model specification are given under ‘Details’. |
Data |
a data frame, list or environment (or object coercible by as.data.frame to a data frame) containing the variables in the model. |
Complete |
(Default False) an optional boolean to change the result output. True will give you a table including between, within and total summary values. False will only give you the variance components themselves. |
Models for pov are specified symbolically. A typical model has the form response ~ terms where response is the (numeric) response vector and terms is a series of terms which specifies a linear predictor for response. A terms specification of the form first + second indicates all the terms in first together with all the terms in second with duplicates removed. A specification of the form first:second indicates the set of terms obtained by taking the interactions of all terms in first with all terms in second. The specification first*second indicates the cross of first and second. This is the same as first + second + first:second.
Variables on the right hand side of the model should be converted to factors before running.
Between variance is the variance due to change in Mean. Within variance is the variance due to the change in StdDev. Common variance is the minimum variance common to all categories.
POV returns a table of variance components.
POV(Response ~ Machine * Metrology, Data = dt, Complete = TRUE)
POV(Response ~ Machine * Metrology, Data = dt, Complete = TRUE)
Summary table from dt, used for vignette
VarTable
VarTable
A data frame with 9 rows and 5 variables:
3 Levels of different machines used for production
3 Levels of different metrology used for measurement
Sample variance of the respone
Sample size of the response at each factor combination
Sample variance rescaled to population variance by multypling by (N-1)/N
Simulated data