aboutsummaryrefslogtreecommitdiff
path: root/vignettes/chemCal.R
diff options
context:
space:
mode:
Diffstat (limited to 'vignettes/chemCal.R')
-rw-r--r--vignettes/chemCal.R39
1 files changed, 13 insertions, 26 deletions
diff --git a/vignettes/chemCal.R b/vignettes/chemCal.R
index 701db7b..d9015e9 100644
--- a/vignettes/chemCal.R
+++ b/vignettes/chemCal.R
@@ -1,36 +1,23 @@
-### R code from vignette source '/home/jranke/git/chemCal/vignettes/chemCal.Rnw'
-
-###################################################
-### code chunk number 1: chemCal.Rnw:38-42
-###################################################
+## ------------------------------------------------------------------------
library(chemCal)
-data(massart97ex3)
m0 <- lm(y ~ x, data = massart97ex3)
calplot(m0)
+## ------------------------------------------------------------------------
+plot(m0, which=3)
-###################################################
-### code chunk number 2: chemCal.Rnw:49-50
-###################################################
-plot(m0,which=3)
-
+## ---- message = FALSE, echo = TRUE---------------------------------------
+weights <- with(massart97ex3, {
+ yx <- split(y, x)
+ ybar <- sapply(yx, mean)
+ s <- round(sapply(yx, sd), digits = 2)
+ w <- round(1 / (s^2), digits = 3)
+})
+massart97ex3.means <- aggregate(y ~ x, massart97ex3, mean)
-###################################################
-### code chunk number 3: chemCal.Rnw:56-63
-###################################################
-attach(massart97ex3)
-yx <- split(y, x)
-ybar <- sapply(yx, mean)
-s <- round(sapply(yx, sd), digits = 2)
-w <- round(1 / (s^2), digits = 3)
-weights <- w[factor(x)]
-m <- lm(y ~ x, w = weights)
+m <- lm(y ~ x, w = weights, data = massart97ex3.means)
-
-###################################################
-### code chunk number 4: chemCal.Rnw:69-71
-###################################################
+## ------------------------------------------------------------------------
inverse.predict(m, 15, ws=1.67)
inverse.predict(m, 90, ws = 0.145)
-

Contact - Imprint