Description Usage Arguments Value Examples
View source: R/quality_ellipse.R
Quality Control Ellipse
1 | quality_ellipse(df, var1, var2, alpha = 0.05)
|
df |
a multivariate data.frame |
var1 |
the column number of the first variable for the ellipse |
var2 |
the column number of the second varaible for the ellipse |
alpha |
the signficance level, defaulted to 0.05 |
g a quality control ellipse
1 2 3 4 | weld <- data.frame(weld)
weldln <- data.frame(cbind(weld[,1:3], log(weld[,4])))
colnames(weldln) <- c("Voltage", "Current", "FeedSpeed", "ln(GasFlow)")
quality_ellipse(weldln, 1, 4, alpha = 0.01)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.