aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorranke <ranke@5fad18fb-23f0-0310-ab10-e59a3bee62b4>2006-05-10 15:44:14 +0000
committerranke <ranke@5fad18fb-23f0-0310-ab10-e59a3bee62b4>2006-05-10 15:44:14 +0000
commit513dfbdcdda94a901b5901b486ff5500c7d158b1 (patch)
treefefbf7daadbd7da71add3ed63b3d3b07c4c8e4df
parent8d30b2cd951c992e4f9aa3055054091e18b8b4f0 (diff)
The inverse prediction works in a variety of cases and is
tested with Examples 7 and 8 from Massart! I need to compare with the DIN and draper examples, and finish the package vignette. git-svn-id: http://kriemhild.uft.uni-bremen.de/svn/chemCal@6 5fad18fb-23f0-0310-ab10-e59a3bee62b4
-rw-r--r--DESCRIPTION2
-rw-r--r--INDEX15
-rw-r--r--R/calplot.R52
-rw-r--r--R/chemCal.R95
-rw-r--r--R/inverse.predict.lm.R95
-rw-r--r--data/draper.R5
-rw-r--r--demo/massart97ex3.R15
-rw-r--r--inst/doc/Makefile27
-rw-r--r--inst/doc/Rplots.ps1763
-rw-r--r--inst/doc/chemCal-001.eps1762
-rw-r--r--inst/doc/chemCal-001.pdf1727
-rw-r--r--inst/doc/chemCal.Rnw87
-rw-r--r--inst/doc/chemCal.aux17
-rw-r--r--inst/doc/chemCal.bbl0
-rw-r--r--inst/doc/chemCal.blg46
-rw-r--r--inst/doc/chemCal.log364
-rw-r--r--inst/doc/chemCal.out0
-rw-r--r--inst/doc/chemCal.pdfbin0 -> 105421 bytes
-rw-r--r--man/calm.Rd43
-rw-r--r--man/calplot.lm.Rd55
-rw-r--r--man/draper.Rd9
-rw-r--r--man/inverse.predict.Rd65
-rw-r--r--man/plot.calm.Rd48
-rw-r--r--man/predictx.Rd37
24 files changed, 6067 insertions, 262 deletions
diff --git a/DESCRIPTION b/DESCRIPTION
index e19e179..556600c 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,5 +1,5 @@
Package: chemCal
-Version: 0.05-4
+Version: 0.05-6
Date: 2006-05-09
Title: Calibration functions for analytical chemistry
Author: Johannes Ranke <jranke@uni-bremen.de>
diff --git a/INDEX b/INDEX
index ec2f1b4..3c17013 100644
--- a/INDEX
+++ b/INDEX
@@ -1,10 +1,7 @@
-calm Generate a linear calibration model
-calplot Plot calibration graphs
-plot.calm Plot prediction bands
-calpredict Estimate measurement results including
- confidence intervals
-predict.calm Estimate measurement results including confidence
- intervals
+calplot Plot calibration graphs from univariate linear
+ models
din32645 Calibration data from DIN 32645
-pahCalibration Calibration data for HPLC measurement of 4 PAH
-pahMeasurements Measurement data for HPLC measurement of 4 PAH
+draper Regression example with repeated measurements
+inverse.predict Predict x from y for a linear calibration
+massart97ex3 Calibration data from Massart et al. (1997),
+ example 3
diff --git a/R/calplot.R b/R/calplot.R
new file mode 100644
index 0000000..cea1149
--- /dev/null
+++ b/R/calplot.R
@@ -0,0 +1,52 @@
+calplot <- function(object, xlim = "auto", ylim = "auto",
+ xlab = "Concentration", ylab = "Response", alpha=0.05)
+{
+ UseMethod("calplot")
+}
+
+calplot.default <- function(object, xlim = "auto", ylim = "auto",
+ xlab = "Concentration", ylab = "Response", alpha=0.05)
+{
+ stop("Calibration plots only implemented for univariate lm objects.")
+}
+
+calplot.lm <- function(object, xlim = "auto", ylim = "auto",
+ xlab = "Concentration", ylab = "Response", alpha=0.05)
+{
+ if (length(object$coef) > 2)
+ stop("More than one independent variable in your model - not implemented")
+
+ if (alpha <= 0 | alpha >= 1)
+ stop("Alpha should be between 0 and 1 (exclusive)")
+
+ m <- object
+ level <- 1 - alpha
+ x <- m$model$x
+ y <- m$model$y
+ newdata <- data.frame(x = seq(0,max(x),length=250))
+ pred.lim <- predict(m, newdata, interval = "prediction",level=level)
+ conf.lim <- predict(m, newdata, interval = "confidence",level=level)
+ if (xlim == "auto") xlim = c(0,max(x))
+ if (ylim == "auto") ylim = range(c(pred.lim,y))
+ plot(1,
+ type = "n",
+ xlab = xlab,
+ ylab = ylab,
+ xlim = xlim,
+ ylim = ylim
+ )
+ points(x,y, pch = 21, bg = "yellow")
+ matlines(newdata$x, pred.lim, lty = c(1, 4, 4),
+ col = c("black", "red", "red"))
+ matlines(newdata$x, conf.lim, lty = c(1, 3, 3),
+ col = c("black", "green4", "green4"))
+
+ legend(min(x),
+ max(pred.lim, na.rm = TRUE),
+ legend = c("Fitted Line", "Confidence Bands",
+ "Prediction Bands"),
+ lty = c(1, 3, 4),
+ lwd = 2,
+ col = c("black", "green4", "red"),
+ horiz = FALSE, cex = 0.9, bg = "gray95")
+}
diff --git a/R/chemCal.R b/R/chemCal.R
deleted file mode 100644
index fab7db4..0000000
--- a/R/chemCal.R
+++ /dev/null
@@ -1,95 +0,0 @@
-calm <- function(data)
-{
- y <- data[[2]]
- x <- data[[1]]
- m <- lm(y ~ x)
- s <- summary(m)
- if (s$coefficients[1,4] > 0.05)
- {
- m <- lm(y ~ x - 1)
- s <- summary(m)
- m$intercept <- FALSE
- } else {
- m$intercept <- TRUE
- }
- class(m) <- "calm"
- m$yname <- names(data)[[1]]
- m$xname <- names(data)[[2]]
- return(m)
-}
-predict.calm <- predict.lm
-print.calm <- print.lm
-summary.calm <- summary.lm
-plot.calm <- function(x,...,
- xunit="",yunit="",measurand="",
- level=0.95)
-{
- m <- x
- x <- m$model$x
- y <- m$model$y
- newdata <- data.frame(x = seq(0,max(x),length=250))
- pred.lim <- predict(m, newdata, interval = "prediction",level=level)
- conf.lim <- predict(m, newdata, interval = "confidence",level=level)
- if (xunit!="") {
- xlab <- paste("Concentration in ",xunit)
- } else xlab <- m$xname
- if (yunit=="") yunit <- m$yname
- if (measurand!="") {
- main <- paste("Calibration for",measurand)
- } else main <- "Calibration"
- plot(1,
- xlab = xlab,
- ylab = yunit,
- type = "n",
- main = main,
- xlim = c(0,max(x)),
- ylim = range(pred.lim)
- )
- points(x,y, pch = 21, bg = "yellow")
- matlines(newdata$x, pred.lim, lty = c(1, 4, 4),
- col = c("black", "red", "red"))
- matlines(newdata$x, conf.lim, lty = c(1, 3, 3),
- col = c("black", "green4", "green4"))
-
- legend(min(x),
- max(pred.lim, na.rm = TRUE),
- legend = c("Fitted Line", "Confidence Bands",
- "Prediction Bands"),
- lty = c(1, 3, 4),
- lwd = 2,
- col = c("black", "green4", "red"),
- horiz = FALSE, cex = 0.9, bg = "gray95")
-}
-predictx <- function(m,yobs,level=0.95)
-{
- s <- summary(m)
- xi <- m$model$x
- yi <- m$model$y
- n <- length(yi)
- p <- length(yobs)
- if (p > 1) {
- varyobs <- var(yobs)
- } else {
- varyobs <- 0
- }
- if (!m$intercept) {
- b1 <- summary(m)$coef["x","Estimate"]
- varb1 <- summary(m)$coef["x","Std. Error"]^2
- xpred <- mean(yobs)/b1
- varxpred <- (varyobs + xpred^2 * varb1) / b1^2
- sdxpred <- sqrt(varxpred)
- } else
- {
- b0 <- summary(m)$coef["(Intercept)","Estimate"]
- b1 <- summary(m)$coef["x","Estimate"]
- S <- summary(m)$sigma
- xpred <- (mean(yobs) - b0)/b1
- sumxxbar <- sum((xi - mean(xi))^2)
- yybar <- (mean(yobs) - mean(yi))^2
- sdxpred <- (S/b1) * (1/p + 1/n + yybar/(b1^2 * sumxxbar))^0.5
- }
- t <- qt((1 + level)/2,n - 2)
- confxpred <- t * sdxpred
-
- result <- c(estimate=xpred,sdxpred=sdxpred,confxpred=confxpred)
-}
diff --git a/R/inverse.predict.lm.R b/R/inverse.predict.lm.R
index f438d99..f1921e4 100644
--- a/R/inverse.predict.lm.R
+++ b/R/inverse.predict.lm.R
@@ -1,40 +1,89 @@
# This is an implementation of Equation (8.28) in the Handbook of Chemometrics
-# and Qualimetrics, Part A, Massart et al, page 200, validated with Example 8
-# on the same page
+# and Qualimetrics, Part A, Massart et al (1997), page 200, validated with
+# Example 8 on the same page
-inverse.predict <- function(object, newdata, alpha=0.05)
+inverse.predict <- function(object, newdata,
+ ws = ifelse(length(object$weights) > 0, mean(object$weights), 1),
+ alpha=0.05, ss = "auto")
{
UseMethod("inverse.predict")
}
-inverse.predict.default <- function(object, newdata, alpha=0.05)
+inverse.predict.default <- function(object, newdata,
+ ws = ifelse(length(object$weights) > 0, mean(object$weights), 1),
+ alpha=0.05, ss = "auto")
{
stop("Inverse prediction only implemented for univariate lm objects.")
}
-inverse.predict.lm <- function(object, newdata, alpha=0.05)
+inverse.predict.lm <- function(object, newdata,
+ ws = ifelse(length(object$weights) > 0, mean(object$weights), 1),
+ alpha=0.05, ss = "auto")
{
- if (is.list(newdata)) {
- if (!is.null(newdata$y))
- newdata <- newdata$y
- else
- stop("Newdata list should contain element newdata$y")
- }
+ if (length(object$coef) > 2)
+ stop("More than one independent variable in your model - not implemented")
+
+ if (alpha <= 0 | alpha >= 1)
+ stop("Alpha should be between 0 and 1 (exclusive)")
+
+ ybars <- mean(newdata)
+ m <- length(newdata)
- if (is.matrix(newdata)) {
- Y <- newdata
- Ybar <- apply(Y,1,mean)
- nrepl <- ncol(Y)
+ yx <- split(object$model$y,object$model$x)
+ n <- length(yx)
+ x <- as.numeric(names(yx))
+ ybar <- sapply(yx,mean)
+ if (length(object$weights) > 0) {
+ wx <- split(object$weights,object$model$x)
+ w <- sapply(wx,mean)
+ } else {
+ w <- rep(1,n)
}
- else {
- Y <- as.vector(newdata)
- Ybar <- Y
- nrepl <- 1
+ yhatx <- split(object$fitted.values,object$model$x)
+ yhat <- sapply(yhatx,mean)
+ se <- sqrt(sum(w*(ybar - yhat)^2)/(n-2))
+ if (ss == "auto") {
+ ss <- se
+ } else {
+ ss <- ss
}
- if (length(object$coef) > 2)
- stop("Inverse prediction not yet implemented for more than one independent variable")
+ b1 <- object$coef[["x"]]
- if (alpha <= 0 | alpha >= 1)
- stop("Alpha should be between 0 and 1 (exclusive)")
+ ybarw <- sum(w * ybar)/sum(w)
+
+# The commented out code for sxhats is equation 8.28 without changes. It has
+# been replaced by the code below, in order to be able to take into account a
+# precision in the sample measurements that differs from the precision in the
+# calibration samples.
+
+# sxhats <- se/b1 * sqrt(
+# 1/(ws * m) +
+# 1/sum(w) +
+# (ybars - ybarw)^2 * sum(w) /
+# (b1^2 * (sum(w) * sum(w * x^2) - sum(w * x)^2))
+# )
+
+# This is equation 8.28, but with the possibility to take into account a
+# different precision measurement of the sample and standard solutions
+# in analogy to equation 8.26
+ sxhats <- 1/b1 * sqrt(
+ ss^2/(ws * m) +
+ se^2 * (1/sum(w) +
+ (ybars - ybarw)^2 * sum(w) /
+ (b1^2 * (sum(w) * sum(w * x^2) - sum(w * x)^2)))
+ )
+
+ if (names(object$coef)[1] == "(Intercept)") {
+ b0 <- object$coef[["(Intercept)"]]
+ } else {
+ b0 <- 0
+ }
+
+ xs <- (ybars - b0) / b1
+ t <- qt(1-0.5*alpha, n - 2)
+ conf <- t * sxhats
+ result <- list("Prediction"=xs,"Standard Error"=sxhats,
+ "Confidence"=conf, "Confidence Limits"=c(xs - conf, xs + conf))
+ return(result)
}
diff --git a/data/draper.R b/data/draper.R
new file mode 100644
index 0000000..5aa7ae9
--- /dev/null
+++ b/data/draper.R
@@ -0,0 +1,5 @@
+"draper" <-
+structure(list(x=c(1.3, 1.3, 2.0, 2.0, 2.7, 3.3, 3.3, 3.7, 3.7, 4.0,
+4.0, 4.0, 4.7, 4.7, 4.7, 5.0, 5.3, 5.3, 5.3, 5.7, 6.0, 6.0, 6.3, 6.7),
+y=c(2.3, 1.8, 2.8, 1.5, 2.2, 3.8, 1.8, 3.7, 1.7, 2.8, 2.8, 2.2, 5.4,
+3.2, 1.9, 1.8, 3.5, 2.8, 2.1, 3.4, 3.2, 3.0, 3.0, 5.9)))
diff --git a/demo/massart97ex3.R b/demo/massart97ex3.R
index 7bf9633..731aba6 100644
--- a/demo/massart97ex3.R
+++ b/demo/massart97ex3.R
@@ -1,12 +1,15 @@
library(chemCal)
data(massart97ex3)
attach(massart97ex3)
-xi <- levels(factor(x))
yx <- split(y,factor(x))
-ybari <- sapply(yx,mean)
-si <- round(sapply(yx,sd),digits=2)
-wi <- round(1/(si^2),digits=3)
-data.frame(xi,ybari,si,wi)
+ybar <- sapply(yx,mean)
+s <- round(sapply(yx,sd),digits=2)
+w <- round(1/(si^2),digits=3)
+data.frame(x=levels(factor(x)),ybar,s,w)
-weights <- wi[factor(x)]
+weights <- w[factor(x)]
m <- lm(y ~ x,w=weights)
+inverse.predict(m,15,ws=1.67)
+inverse.predict(m,90,ws=0.145)
+
+calplot(m)
diff --git a/inst/doc/Makefile b/inst/doc/Makefile
new file mode 100644
index 0000000..637b193
--- /dev/null
+++ b/inst/doc/Makefile
@@ -0,0 +1,27 @@
+# Makefile for Sweave documents containing both Latex and R code
+# Author: Johannes Ranke <jranke@uni-bremen.de>
+# Last Change: 2006 Mai 10
+# based on the Makefile of Nicholas Lewin-Koh
+# in turn based on work of Rouben Rostmaian
+# SVN: $Id: Makefile.rnoweb 50 2006-04-18 11:13:52Z ranke $
+
+RNWFILES = $(wildcard *.Rnw)
+TARGETS = $(patsubst %.Rnw,%.tex,$(RNWFILE)) $(patsubst %.Rnw,%.pdf,$(RNWFILES))
+
+%.tex: %.Rnw
+ echo 'Sweave("$<")' | R --no-save --no-restore
+
+%.pdf: %.tex
+ pdflatex $<
+
+all: all-recursive $(TARGETS)
+
+clean: clean-recursive
+ rm -f *.aux *.log *.bbl *.blg *.brf *.cb *.ind *.idx *.ilg \
+ *.inx *.ps *.dvi *.toc *.out *.lot *~ *.lof *.ttt *.fff
+
+all-recursive:
+ for dir in $(wildcard *); do if [ -d $$dir ] && [ -f $$dir/Makefile ]; then cd $$dir; $(MAKE) all; cd ..; fi; done
+
+clean-recursive:
+ for dir in $(wildcard *); do if [ -d $$dir ] && [ -f $$dir/Makefile ]; then cd $$dir; $(MAKE) clean; cd ..; fi; done
diff --git a/inst/doc/Rplots.ps b/inst/doc/Rplots.ps
new file mode 100644
index 0000000..654b7c3
--- /dev/null
+++ b/inst/doc/Rplots.ps
@@ -0,0 +1,1763 @@
+%!PS-Adobe-3.0
+%%DocumentNeededResources: font Helvetica
+%%+ font Helvetica-Bold
+%%+ font Helvetica-Oblique
+%%+ font Helvetica-BoldOblique
+%%+ font Symbol
+%%DocumentMedia: a4 595 841 0 () ()
+%%Title: R Graphics Output
+%%Creator: R Software
+%%Pages: (atend)
+%%Orientation: Landscape
+%%BoundingBox: 18 18 577 824
+%%EndComments
+%%BeginProlog
+/bp { gs 595.00 0 translate 90 rotate gs } def
+% begin .ps.prolog
+/gs { gsave } def
+/gr { grestore } def
+/ep { showpage gr gr } def
+/m { moveto } def
+/l { rlineto } def
+/np { newpath } def
+/cp { closepath } def
+/f { fill } def
+/o { stroke } def
+/c { newpath 0 360 arc } def
+/r { 4 2 roll moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch rlineto closepath } def
+/p1 { stroke } def
+/p2 { gsave bg setrgbcolor fill grestore newpath } def
+/p3 { gsave bg setrgbcolor fill grestore stroke } def
+/t { 6 -2 roll moveto gsave rotate
+ ps mul neg 0 2 1 roll rmoveto
+ 1 index stringwidth pop
+ mul neg 0 rmoveto show grestore } def
+/cl { grestore gsave newpath 3 index 3 index moveto 1 index
+ 4 -1 roll lineto exch 1 index lineto lineto
+ closepath clip newpath } def
+/rgb { setrgbcolor } def
+/s { scalefont setfont } def
+% end .ps.prolog
+%%IncludeResource: font Helvetica
+/Helvetica findfont
+dup length dict begin
+ {1 index /FID ne {def} {pop pop} ifelse} forall
+ /Encoding ISOLatin1Encoding def
+ currentdict
+ end
+/Font1 exch definefont pop
+%%IncludeResource: font Helvetica-Bold
+/Helvetica-Bold findfont
+dup length dict begin
+ {1 index /FID ne {def} {pop pop} ifelse} forall
+ /Encoding ISOLatin1Encoding def
+ currentdict
+ end
+/Font2 exch definefont pop
+%%IncludeResource: font Helvetica-Oblique
+/Helvetica-Oblique findfont
+dup length dict begin
+ {1 index /FID ne {def} {pop pop} ifelse} forall
+ /Encoding ISOLatin1Encoding def
+ currentdict
+ end
+/Font3 exch definefont pop
+%%IncludeResource: font Helvetica-BoldOblique
+/Helvetica-BoldOblique findfont
+dup length dict begin
+ {1 index /FID ne {def} {pop pop} ifelse} forall
+ /Encoding ISOLatin1Encoding def
+ currentdict
+ end
+/Font4 exch definefont pop
+%%IncludeResource: font Symbol
+/Symbol findfont
+dup length dict begin
+ {1 index /FID ne {def} {pop pop} ifelse} forall
+ currentdict
+ end
+/Font5 exch definefont pop
+%%EndProlog
+%%Page: 1 1
+bp
+18.00 18.00 823.89 577.28 cl
+0 0 0 rgb
+0.75 setlinewidth
+[] 0 setdash
+1 setlinecap
+1 setlinejoin
+10.00 setmiterlimit
+np
+103.58 91.44 m
+663.53 0 l
+o
+np
+103.58 91.44 m
+0 -7.20 l
+o
+np
+236.29 91.44 m
+0 -7.20 l
+o
+np
+368.99 91.44 m
+0 -7.20 l
+o
+np
+501.70 91.44 m
+0 -7.20 l
+o
+np
+634.40 91.44 m
+0 -7.20 l
+o
+np
+767.11 91.44 m
+0 -7.20 l
+o
+/ps 12 def /Font1 findfont 12 s
+103.58 65.52 (0) .5 0 0 t
+236.29 65.52 (10) .5 0 0 t
+368.99 65.52 (20) .5 0 0 t
+501.70 65.52 (30) .5 0 0 t
+634.40 65.52 (40) .5 0 0 t
+767.11 65.52 (50) .5 0 0 t
+np
+77.04 108.99 m
+0 360.95 l
+o
+np
+77.04 108.99 m
+-7.20 0 l
+o
+np
+77.04 181.18 m
+-7.20 0 l
+o
+np
+77.04 253.37 m
+-7.20 0 l
+o
+np
+77.04 325.56 m
+-7.20 0 l
+o
+np
+77.04 397.75 m
+-7.20 0 l
+o
+np
+77.04 469.94 m
+-7.20 0 l
+o
+59.76 108.99 (0) .5 0 90 t
+59.76 181.18 (20) .5 0 90 t
+59.76 253.37 (40) .5 0 90 t
+59.76 325.56 (60) .5 0 90 t
+59.76 397.75 (80) .5 0 90 t
+59.76 469.94 (100) .5 0 90 t
+np
+77.04 91.44 m
+716.61 0 l
+0 426.80 l
+-716.61 0 l
+0 -426.80 l
+o
+18.00 18.00 823.89 577.28 cl
+/ps 12 def /Font1 findfont 12 s
+0 0 0 rgb
+435.34 36.72 (Concentration) .5 0 0 t
+30.96 304.84 (Response) .5 0 90 t
+77.04 91.44 793.65 518.24 cl
+/bg { 1 1 0 } def
+0 0 0 rgb
+0.75 setlinewidth
+[] 0 setdash
+1 setlinecap
+1 setlinejoin
+10.00 setmiterlimit
+103.58 123.43 2.70 c p3
+236.29 188.40 2.70 c p3
+368.99 267.81 2.70 c p3
+501.70 325.56 2.70 c p3
+634.40 379.70 2.70 c p3
+767.11 484.38 2.70 c p3
+103.58 119.82 2.70 c p3
+236.29 181.18 2.70 c p3
+368.99 275.03 2.70 c p3
+501.70 336.39 2.70 c p3
+634.40 401.36 2.70 c p3
+767.11 502.43 2.70 c p3
+103.58 123.43 2.70 c p3
+236.29 184.79 2.70 c p3
+368.99 271.42 2.70 c p3
+501.70 325.56 2.70 c p3
+634.40 394.14 2.70 c p3
+767.11 495.21 2.70 c p3
+103.58 127.04 2.70 c p3
+236.29 188.40 2.70 c p3
+368.99 267.81 2.70 c p3
+501.70 336.39 2.70 c p3
+634.40 390.53 2.70 c p3
+767.11 473.55 2.70 c p3
+103.58 123.43 2.70 c p3
+236.29 184.79 2.70 c p3
+368.99 267.81 2.70 c p3
+501.70 336.39 2.70 c p3
+634.40 386.92 2.70 c p3
+767.11 487.99 2.70 c p3
+np
+103.58 121.56 m
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+370.06 263.89 lineto
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+636.53 406.21 lineto
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+o
+1 0 0 rgb
+0.75 setlinewidth
+[ 0.00 4.00 3.00 4.00] 0 setdash
+np
+103.58 107.25 m
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+370.06 249.70 lineto
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.41 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+636.53 390.85 lineto
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.41 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.40 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.40 l
+o
+np
+103.58 135.88 m
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.43 l
+370.06 278.07 lineto
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+636.53 421.56 lineto
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.45 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.45 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.45 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.45 l
+2.66 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.45 l
+o
+0 0 0 rgb
+0.75 setlinewidth
+[] 0 setdash
+np
+103.58 121.56 m
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+370.06 263.89 lineto
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+636.53 406.21 lineto
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+o
+0 0.5451 0 rgb
+0.75 setlinewidth
+[ 0.00 4.00] 0 setdash
+np
+103.58 117.83 m
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.46 l
+2.66 1.45 l
+2.66 1.45 l
+2.67 1.46 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.44 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.45 l
+2.66 1.44 l
+2.67 1.45 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.44 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.40 l
+370.06 260.68 lineto
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.39 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.39 l
+2.66 1.40 l
+2.67 1.39 l
+2.66 1.40 l
+2.67 1.39 l
+2.66 1.40 l
+2.66 1.39 l
+2.67 1.40 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.40 l
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.40 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.40 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.39 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.38 l
+2.66 1.39 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.38 l
+636.53 399.52 lineto
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.39 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.39 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.38 l
+2.66 1.38 l
+2.67 1.38 l
+2.66 1.38 l
+2.67 1.39 l
+2.66 1.38 l
+2.67 1.38 l
+o
+np
+103.58 125.30 m
+2.67 1.39 l
+2.66 1.39 l
+2.67 1.40 l
+2.66 1.39 l
+2.66 1.39 l
+2.67 1.40 l
+2.66 1.39 l
+2.67 1.40 l
+2.66 1.39 l
+2.67 1.40 l
+2.66 1.39 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.39 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.39 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.40 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.40 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.40 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.41 l
+2.67 1.41 l
+2.66 1.42 l
+2.66 1.41 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.41 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.42 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.42 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.43 l
+2.67 1.43 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.44 l
+2.67 1.43 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.43 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.67 1.45 l
+2.66 1.44 l
+2.67 1.44 l
+2.66 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.45 l
+370.06 267.09 lineto
+2.66 1.45 l
+2.67 1.44 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.46 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.46 l
+2.66 1.45 l
+2.67 1.45 l
+2.66 1.46 l
+2.67 1.45 l
+2.66 1.45 l
+2.67 1.46 l
+2.66 1.45 l
+2.67 1.46 l
+2.66 1.45 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.45 l
+2.66 1.46 l
+2.67 1.45 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.45 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.45 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.45 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.45 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.47 l
+636.53 412.90 lineto
+2.67 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.47 l
+2.67 1.46 l
+2.66 1.47 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.47 l
+2.66 1.46 l
+2.67 1.46 l
+o
+/bg { 0.9490 0.9490 0.9490 } def
+0 0 0 rgb
+0.75 setlinewidth
+[] 0 setdash
+103.58 492.28 133.62 -51.84 r p3
+1.50 setlinewidth
+[] 0 setdash
+np
+113.30 479.32 m
+19.44 0 l
+o
+0 0.5451 0 rgb
+1.50 setlinewidth
+[ 0.00 6.00] 0 setdash
+np
+113.30 466.36 m
+19.44 0 l
+o
+1 0 0 rgb
+1.50 setlinewidth
+[ 0.00 6.00 4.50 6.00] 0 setdash
+np
+113.30 453.40 m
+19.44 0 l
+o
+/ps 11 def /Font1 findfont 11 s
+0 0 0 rgb
+142.46 475.37 (Fitted Line) 0 0 0 t
+142.46 462.41 (Confidence Bands) 0 0 0 t
+142.46 449.45 (Prediction Bands) 0 0 0 t
+ep
+%%Trailer
+%%Pages: 1
+%%EOF
diff --git a/inst/doc/chemCal-001.eps b/inst/doc/chemCal-001.eps
new file mode 100644
index 0000000..228ce99
--- /dev/null
+++ b/inst/doc/chemCal-001.eps
@@ -0,0 +1,1762 @@
+%!PS-Adobe-3.0
+%%DocumentNeededResources: font Helvetica
+%%+ font Helvetica-Bold
+%%+ font Helvetica-Oblique
+%%+ font Helvetica-BoldOblique
+%%+ font Symbol
+%%DocumentMedia: special 432 432 0 () ()
+%%Title: R Graphics Output
+%%Creator: R Software
+%%Pages: (atend)
+%%BoundingBox: 0 0 432 432
+%%EndComments
+%%BeginProlog
+/bp { gs gs } def
+% begin .ps.prolog
+/gs { gsave } def
+/gr { grestore } def
+/ep { showpage gr gr } def
+/m { moveto } def
+/l { rlineto } def
+/np { newpath } def
+/cp { closepath } def
+/f { fill } def
+/o { stroke } def
+/c { newpath 0 360 arc } def
+/r { 4 2 roll moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch rlineto closepath } def
+/p1 { stroke } def
+/p2 { gsave bg setrgbcolor fill grestore newpath } def
+/p3 { gsave bg setrgbcolor fill grestore stroke } def
+/t { 6 -2 roll moveto gsave rotate
+ ps mul neg 0 2 1 roll rmoveto
+ 1 index stringwidth pop
+ mul neg 0 rmoveto show grestore } def
+/cl { grestore gsave newpath 3 index 3 index moveto 1 index
+ 4 -1 roll lineto exch 1 index lineto lineto
+ closepath clip newpath } def
+/rgb { setrgbcolor } def
+/s { scalefont setfont } def
+% end .ps.prolog
+%%IncludeResource: font Helvetica
+/Helvetica findfont
+dup length dict begin
+ {1 index /FID ne {def} {pop pop} ifelse} forall
+ /Encoding ISOLatin1Encoding def
+ currentdict
+ end
+/Font1 exch definefont pop
+%%IncludeResource: font Helvetica-Bold
+/Helvetica-Bold findfont
+dup length dict begin
+ {1 index /FID ne {def} {pop pop} ifelse} forall
+ /Encoding ISOLatin1Encoding def
+ currentdict
+ end
+/Font2 exch definefont pop
+%%IncludeResource: font Helvetica-Oblique
+/Helvetica-Oblique findfont
+dup length dict begin
+ {1 index /FID ne {def} {pop pop} ifelse} forall
+ /Encoding ISOLatin1Encoding def
+ currentdict
+ end
+/Font3 exch definefont pop
+%%IncludeResource: font Helvetica-BoldOblique
+/Helvetica-BoldOblique findfont
+dup length dict begin
+ {1 index /FID ne {def} {pop pop} ifelse} forall
+ /Encoding ISOLatin1Encoding def
+ currentdict
+ end
+/Font4 exch definefont pop
+%%IncludeResource: font Symbol
+/Symbol findfont
+dup length dict begin
+ {1 index /FID ne {def} {pop pop} ifelse} forall
+ currentdict
+ end
+/Font5 exch definefont pop
+%%EndProlog
+%%Page: 1 1
+bp
+0.00 0.00 432.00 432.00 cl
+0 0 0 rgb
+0.75 setlinewidth
+[] 0 setdash
+1 setlinecap
+1 setlinejoin
+10.00 setmiterlimit
+np
+71.73 73.44 m
+317.34 0 l
+o
+np
+71.73 73.44 m
+0 -7.20 l
+o
+np
+135.20 73.44 m
+0 -7.20 l
+o
+np
+198.67 73.44 m
+0 -7.20 l
+o
+np
+262.13 73.44 m
+0 -7.20 l
+o
+np
+325.60 73.44 m
+0 -7.20 l
+o
+np
+389.07 73.44 m
+0 -7.20 l
+o
+/ps 12 def /Font1 findfont 12 s
+71.73 47.52 (0) .5 0 0 t
+135.20 47.52 (10) .5 0 0 t
+198.67 47.52 (20) .5 0 0 t
+262.13 47.52 (30) .5 0 0 t
+325.60 47.52 (40) .5 0 0 t
+389.07 47.52 (50) .5 0 0 t
+np
+59.04 85.76 m
+0 253.31 l
+o
+np
+59.04 85.76 m
+-7.20 0 l
+o
+np
+59.04 136.42 m
+-7.20 0 l
+o
+np
+59.04 187.08 m
+-7.20 0 l
+o
+np
+59.04 237.74 m
+-7.20 0 l
+o
+np
+59.04 288.41 m
+-7.20 0 l
+o
+np
+59.04 339.07 m
+-7.20 0 l
+o
+41.76 85.76 (0) .5 0 90 t
+41.76 136.42 (20) .5 0 90 t
+41.76 187.08 (40) .5 0 90 t
+41.76 237.74 (60) .5 0 90 t
+41.76 288.41 (80) .5 0 90 t
+41.76 339.07 (100) .5 0 90 t
+np
+59.04 73.44 m
+342.72 0 l
+0 299.52 l
+-342.72 0 l
+0 -299.52 l
+o
+0.00 0.00 432.00 432.00 cl
+/ps 12 def /Font1 findfont 12 s
+0 0 0 rgb
+230.40 18.72 (Concentration) .5 0 0 t
+12.96 223.20 (Response) .5 0 90 t
+59.04 73.44 401.76 372.96 cl
+/bg { 1 1 0 } def
+0 0 0 rgb
+0.75 setlinewidth
+[] 0 setdash
+1 setlinecap
+1 setlinejoin
+10.00 setmiterlimit
+71.73 95.89 2.70 c p3
+135.20 141.49 2.70 c p3
+198.67 197.21 2.70 c p3
+262.13 237.74 2.70 c p3
+325.60 275.74 2.70 c p3
+389.07 349.20 2.70 c p3
+71.73 93.36 2.70 c p3
+135.20 136.42 2.70 c p3
+198.67 202.28 2.70 c p3
+262.13 245.34 2.70 c p3
+325.60 290.94 2.70 c p3
+389.07 361.87 2.70 c p3
+71.73 95.89 2.70 c p3
+135.20 138.95 2.70 c p3
+198.67 199.75 2.70 c p3
+262.13 237.74 2.70 c p3
+325.60 285.87 2.70 c p3
+389.07 356.80 2.70 c p3
+71.73 98.42 2.70 c p3
+135.20 141.49 2.70 c p3
+198.67 197.21 2.70 c p3
+262.13 245.34 2.70 c p3
+325.60 283.34 2.70 c p3
+389.07 341.60 2.70 c p3
+71.73 95.89 2.70 c p3
+135.20 138.95 2.70 c p3
+198.67 197.21 2.70 c p3
+262.13 245.34 2.70 c p3
+325.60 280.81 2.70 c p3
+389.07 351.73 2.70 c p3
+np
+71.73 94.58 m
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+199.18 194.46 lineto
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+326.62 294.34 lineto
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+o
+1 0 0 rgb
+0.75 setlinewidth
+[ 0.00 4.00 3.00 4.00] 0 setdash
+np
+71.73 84.53 m
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+199.18 184.50 lineto
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.98 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+326.62 283.57 lineto
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.98 l
+o
+np
+71.73 104.62 m
+1.28 1.00 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.01 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+199.18 204.41 lineto
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.00 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.00 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.00 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+326.62 305.12 lineto
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.02 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.01 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.02 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.02 l
+1.28 1.01 l
+o
+0 0 0 rgb
+0.75 setlinewidth
+[] 0 setdash
+np
+71.73 94.58 m
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+199.18 194.46 lineto
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+326.62 294.34 lineto
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+o
+0 0.5451 0 rgb
+0.75 setlinewidth
+[ 0.00 4.00] 0 setdash
+np
+71.73 91.96 m
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.02 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.02 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.02 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.01 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.98 l
+199.18 192.21 lineto
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.98 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.98 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.97 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.98 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.97 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.97 l
+1.27 0.98 l
+1.28 0.97 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.97 l
+1.27 0.98 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.98 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.98 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.98 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.27 0.98 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.98 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.98 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+326.62 289.64 lineto
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+1.27 0.97 l
+1.28 0.97 l
+o
+np
+71.73 97.20 m
+1.28 0.98 l
+1.27 0.97 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.98 l
+1.27 0.98 l
+1.28 0.97 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.98 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.98 l
+1.27 0.99 l
+1.28 0.98 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.98 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 1.00 l
+1.27 0.99 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 0.99 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 0.99 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.00 l
+1.27 1.00 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.01 l
+1.28 1.00 l
+1.27 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.00 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.01 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.01 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.01 l
+199.18 196.71 lineto
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.02 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.01 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.02 l
+1.27 1.01 l
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.02 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.02 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.02 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.02 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+326.62 299.04 lineto
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.03 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.02 l
+1.28 1.03 l
+1.27 1.03 l
+1.27 1.03 l
+1.28 1.02 l
+1.27 1.03 l
+1.28 1.03 l
+1.27 1.03 l
+1.28 1.03 l
+o
+/bg { 0.9490 0.9490 0.9490 } def
+0 0 0 rgb
+0.75 setlinewidth
+[] 0 setdash
+71.73 354.74 133.62 -51.84 r p3
+1.50 setlinewidth
+[] 0 setdash
+np
+81.45 341.78 m
+19.44 0 l
+o
+0 0.5451 0 rgb
+1.50 setlinewidth
+[ 0.00 6.00] 0 setdash
+np
+81.45 328.82 m
+19.44 0 l
+o
+1 0 0 rgb
+1.50 setlinewidth
+[ 0.00 6.00 4.50 6.00] 0 setdash
+np
+81.45 315.86 m
+19.44 0 l
+o
+/ps 11 def /Font1 findfont 11 s
+0 0 0 rgb
+110.61 337.83 (Fitted Line) 0 0 0 t
+110.61 324.87 (Confidence Bands) 0 0 0 t
+110.61 311.91 (Prediction Bands) 0 0 0 t
+ep
+%%Trailer
+%%Pages: 1
+%%EOF
diff --git a/inst/doc/chemCal-001.pdf b/inst/doc/chemCal-001.pdf
new file mode 100644
index 0000000..e5c8f5f
--- /dev/null
+++ b/inst/doc/chemCal-001.pdf
@@ -0,0 +1,1727 @@
+%PDF-1.1
+%âãÏÓ\r
+1 0 obj
+<<
+/CreationDate (D:20060510174125)
+/ModDate (D:20060510174125)
+/Title (R Graphics Output)
+/Producer (R 2.3.0)
+/Creator (R)
+>>
+endobj
+2 0 obj
+<<
+/Type /Catalog
+/Pages 3 0 R
+>>
+endobj
+5 0 obj
+<<
+/Type /Font
+/Subtype /Type1
+/Name /F1
+/BaseFont /ZapfDingbats
+>>
+endobj
+6 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Contents 7 0 R
+/Resources 4 0 R
+>>
+endobj
+7 0 obj
+<<
+/Length 8 0 R
+>>
+stream
+q
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+71.73 73.44 m 389.07 73.44 l S
+71.73 73.44 m 71.73 66.24 l S
+135.20 73.44 m 135.20 66.24 l S
+198.67 73.44 m 198.67 66.24 l S
+262.13 73.44 m 262.13 66.24 l S
+325.60 73.44 m 325.60 66.24 l S
+389.07 73.44 m 389.07 66.24 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 68.40 47.52 Tm (0) Tj
+/F2 1 Tf 12.00 0.00 -0.00 12.00 128.53 47.52 Tm (10) Tj
+/F2 1 Tf 12.00 0.00 -0.00 12.00 191.99 47.52 Tm (20) Tj
+/F2 1 Tf 12.00 0.00 -0.00 12.00 255.46 47.52 Tm (30) Tj
+/F2 1 Tf 12.00 0.00 -0.00 12.00 318.93 47.52 Tm (40) Tj
+/F2 1 Tf 12.00 0.00 -0.00 12.00 382.39 47.52 Tm (50) Tj
+ET
+59.04 85.76 m 59.04 339.07 l S
+59.04 85.76 m 51.84 85.76 l S
+59.04 136.42 m 51.84 136.42 l S
+59.04 187.08 m 51.84 187.08 l S
+59.04 237.74 m 51.84 237.74 l S
+59.04 288.41 m 51.84 288.41 l S
+59.04 339.07 m 51.84 339.07 l S
+BT
+/F2 1 Tf 0.00 12.00 -12.00 0.00 41.76 82.42 Tm (0) Tj
+/F2 1 Tf 0.00 12.00 -12.00 0.00 41.76 129.75 Tm (20) Tj
+/F2 1 Tf 0.00 12.00 -12.00 0.00 41.76 180.41 Tm (40) Tj
+/F2 1 Tf 0.00 12.00 -12.00 0.00 41.76 231.07 Tm (60) Tj
+/F2 1 Tf 0.00 12.00 -12.00 0.00 41.76 281.73 Tm (80) Tj
+/F2 1 Tf 0.00 12.00 -12.00 0.00 41.76 329.06 Tm (100) Tj
+ET
+59.04 73.44 m
+401.76 73.44 l
+401.76 372.96 l
+59.04 372.96 l
+59.04 73.44 l
+S
+Q q
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 193.11 18.72 Tm (Concentration) Tj
+/F2 1 Tf 0.00 12.00 -12.00 0.00 12.96 196.19 Tm (Response) Tj
+ET
+Q q 59.04 73.44 342.72 299.52 re W n
+1.000 1.000 0.000 rg
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+BT
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 68.77 93.29 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 132.24 138.89 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 195.70 194.62 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 259.17 235.15 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 322.64 273.15 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 386.10 346.61 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 68.77 90.76 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 132.24 133.82 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 195.70 199.69 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 259.17 242.75 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 322.64 288.34 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 386.10 359.27 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 68.77 93.29 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 132.24 136.36 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 195.70 197.15 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 259.17 235.15 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 322.64 283.28 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 386.10 354.21 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 68.77 95.83 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 132.24 138.89 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 195.70 194.62 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 259.17 242.75 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 322.64 280.74 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 386.10 339.01 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 68.77 93.29 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 132.24 136.36 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 195.70 194.62 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 259.17 242.75 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 322.64 278.21 Tm (l) Tj 0 Tr
+/F1 1 Tf 2 Tr 7.48 0 0 7.48 386.10 349.14 Tm (l) Tj 0 Tr
+ET
+71.73 94.58 m
+73.01 95.58 l
+74.28 96.58 l
+75.56 97.58 l
+76.83 98.57 l
+78.11 99.57 l
+79.38 100.57 l
+80.65 101.57 l
+81.93 102.57 l
+83.20 103.57 l
+84.48 104.57 l
+85.75 105.57 l
+87.03 106.56 l
+88.30 107.56 l
+89.58 108.56 l
+90.85 109.56 l
+92.12 110.56 l
+93.40 111.56 l
+94.67 112.56 l
+95.95 113.56 l
+97.22 114.56 l
+98.50 115.55 l
+99.77 116.55 l
+101.05 117.55 l
+102.32 118.55 l
+103.59 119.55 l
+104.87 120.55 l
+106.14 121.55 l
+107.42 122.55 l
+108.69 123.54 l
+109.97 124.54 l
+111.24 125.54 l
+112.52 126.54 l
+113.79 127.54 l
+115.06 128.54 l
+116.34 129.54 l
+117.61 130.54 l
+118.89 131.53 l
+120.16 132.53 l
+121.44 133.53 l
+122.71 134.53 l
+123.99 135.53 l
+125.26 136.53 l
+126.53 137.53 l
+127.81 138.53 l
+129.08 139.53 l
+130.36 140.52 l
+131.63 141.52 l
+132.91 142.52 l
+134.18 143.52 l
+135.45 144.52 l
+136.73 145.52 l
+138.00 146.52 l
+139.28 147.52 l
+140.55 148.51 l
+141.83 149.51 l
+143.10 150.51 l
+144.38 151.51 l
+145.65 152.51 l
+146.92 153.51 l
+148.20 154.51 l
+149.47 155.51 l
+150.75 156.51 l
+152.02 157.50 l
+153.30 158.50 l
+154.57 159.50 l
+155.85 160.50 l
+157.12 161.50 l
+158.39 162.50 l
+159.67 163.50 l
+160.94 164.50 l
+162.22 165.49 l
+163.49 166.49 l
+164.77 167.49 l
+166.04 168.49 l
+167.32 169.49 l
+168.59 170.49 l
+169.86 171.49 l
+171.14 172.49 l
+172.41 173.48 l
+173.69 174.48 l
+174.96 175.48 l
+176.24 176.48 l
+177.51 177.48 l
+178.79 178.48 l
+180.06 179.48 l
+181.33 180.48 l
+182.61 181.48 l
+183.88 182.47 l
+185.16 183.47 l
+186.43 184.47 l
+187.71 185.47 l
+188.98 186.47 l
+190.26 187.47 l
+191.53 188.47 l
+192.80 189.47 l
+194.08 190.46 l
+195.35 191.46 l
+196.63 192.46 l
+197.90 193.46 l
+199.18 194.46 l
+200.45 195.46 l
+201.73 196.46 l
+203.00 197.46 l
+204.27 198.46 l
+205.55 199.45 l
+206.82 200.45 l
+208.10 201.45 l
+209.37 202.45 l
+210.65 203.45 l
+211.92 204.45 l
+213.20 205.45 l
+214.47 206.45 l
+215.74 207.44 l
+217.02 208.44 l
+218.29 209.44 l
+219.57 210.44 l
+220.84 211.44 l
+222.12 212.44 l
+223.39 213.44 l
+224.67 214.44 l
+225.94 215.43 l
+227.21 216.43 l
+228.49 217.43 l
+229.76 218.43 l
+231.04 219.43 l
+232.31 220.43 l
+233.59 221.43 l
+234.86 222.43 l
+236.13 223.43 l
+237.41 224.42 l
+238.68 225.42 l
+239.96 226.42 l
+241.23 227.42 l
+242.51 228.42 l
+243.78 229.42 l
+245.06 230.42 l
+246.33 231.42 l
+247.60 232.41 l
+248.88 233.41 l
+250.15 234.41 l
+251.43 235.41 l
+252.70 236.41 l
+253.98 237.41 l
+255.25 238.41 l
+256.53 239.41 l
+257.80 240.40 l
+259.07 241.40 l
+260.35 242.40 l
+261.62 243.40 l
+262.90 244.40 l
+264.17 245.40 l
+265.45 246.40 l
+266.72 247.40 l
+268.00 248.40 l
+269.27 249.39 l
+270.54 250.39 l
+271.82 251.39 l
+273.09 252.39 l
+274.37 253.39 l
+275.64 254.39 l
+276.92 255.39 l
+278.19 256.39 l
+279.47 257.38 l
+280.74 258.38 l
+282.01 259.38 l
+283.29 260.38 l
+284.56 261.38 l
+285.84 262.38 l
+287.11 263.38 l
+288.39 264.38 l
+289.66 265.38 l
+290.94 266.37 l
+292.21 267.37 l
+293.48 268.37 l
+294.76 269.37 l
+296.03 270.37 l
+297.31 271.37 l
+298.58 272.37 l
+299.86 273.37 l
+301.13 274.36 l
+302.41 275.36 l
+303.68 276.36 l
+304.95 277.36 l
+306.23 278.36 l
+307.50 279.36 l
+308.78 280.36 l
+310.05 281.36 l
+311.33 282.35 l
+312.60 283.35 l
+313.88 284.35 l
+315.15 285.35 l
+316.42 286.35 l
+317.70 287.35 l
+318.97 288.35 l
+320.25 289.35 l
+321.52 290.35 l
+322.80 291.34 l
+324.07 292.34 l
+325.35 293.34 l
+326.62 294.34 l
+327.89 295.34 l
+329.17 296.34 l
+330.44 297.34 l
+331.72 298.34 l
+332.99 299.33 l
+334.27 300.33 l
+335.54 301.33 l
+336.81 302.33 l
+338.09 303.33 l
+339.36 304.33 l
+340.64 305.33 l
+341.91 306.33 l
+343.19 307.33 l
+344.46 308.32 l
+345.74 309.32 l
+347.01 310.32 l
+348.28 311.32 l
+349.56 312.32 l
+350.83 313.32 l
+352.11 314.32 l
+353.38 315.32 l
+354.66 316.31 l
+355.93 317.31 l
+357.21 318.31 l
+358.48 319.31 l
+359.75 320.31 l
+361.03 321.31 l
+362.30 322.31 l
+363.58 323.31 l
+364.85 324.30 l
+366.13 325.30 l
+367.40 326.30 l
+368.68 327.30 l
+369.95 328.30 l
+371.22 329.30 l
+372.50 330.30 l
+373.77 331.30 l
+375.05 332.30 l
+376.32 333.29 l
+377.60 334.29 l
+378.87 335.29 l
+380.15 336.29 l
+381.42 337.29 l
+382.69 338.29 l
+383.97 339.29 l
+385.24 340.29 l
+386.52 341.28 l
+387.79 342.28 l
+389.07 343.28 l
+S
+1.000 0.000 0.000 RG
+0.75 w
+[ 0.00 4.00 3.00 4.00] 0 d
+71.73 84.53 m
+73.01 85.54 l
+74.28 86.54 l
+75.56 87.55 l
+76.83 88.55 l
+78.11 89.55 l
+79.38 90.56 l
+80.65 91.56 l
+81.93 92.57 l
+83.20 93.57 l
+84.48 94.57 l
+85.75 95.58 l
+87.03 96.58 l
+88.30 97.58 l
+89.58 98.59 l
+90.85 99.59 l
+92.12 100.59 l
+93.40 101.59 l
+94.67 102.60 l
+95.95 103.60 l
+97.22 104.60 l
+98.50 105.61 l
+99.77 106.61 l
+101.05 107.61 l
+102.32 108.61 l
+103.59 109.61 l
+104.87 110.62 l
+106.14 111.62 l
+107.42 112.62 l
+108.69 113.62 l
+109.97 114.62 l
+111.24 115.63 l
+112.52 116.63 l
+113.79 117.63 l
+115.06 118.63 l
+116.34 119.63 l
+117.61 120.63 l
+118.89 121.63 l
+120.16 122.63 l
+121.44 123.63 l
+122.71 124.64 l
+123.99 125.64 l
+125.26 126.64 l
+126.53 127.64 l
+127.81 128.64 l
+129.08 129.64 l
+130.36 130.64 l
+131.63 131.64 l
+132.91 132.64 l
+134.18 133.64 l
+135.45 134.64 l
+136.73 135.64 l
+138.00 136.64 l
+139.28 137.64 l
+140.55 138.64 l
+141.83 139.63 l
+143.10 140.63 l
+144.38 141.63 l
+145.65 142.63 l
+146.92 143.63 l
+148.20 144.63 l
+149.47 145.63 l
+150.75 146.63 l
+152.02 147.63 l
+153.30 148.62 l
+154.57 149.62 l
+155.85 150.62 l
+157.12 151.62 l
+158.39 152.62 l
+159.67 153.61 l
+160.94 154.61 l
+162.22 155.61 l
+163.49 156.61 l
+164.77 157.61 l
+166.04 158.60 l
+167.32 159.60 l
+168.59 160.60 l
+169.86 161.60 l
+171.14 162.59 l
+172.41 163.59 l
+173.69 164.59 l
+174.96 165.58 l
+176.24 166.58 l
+177.51 167.58 l
+178.79 168.57 l
+180.06 169.57 l
+181.33 170.57 l
+182.61 171.56 l
+183.88 172.56 l
+185.16 173.55 l
+186.43 174.55 l
+187.71 175.55 l
+188.98 176.54 l
+190.26 177.54 l
+191.53 178.53 l
+192.80 179.53 l
+194.08 180.52 l
+195.35 181.52 l
+196.63 182.51 l
+197.90 183.51 l
+199.18 184.50 l
+200.45 185.50 l
+201.73 186.49 l
+203.00 187.49 l
+204.27 188.48 l
+205.55 189.48 l
+206.82 190.47 l
+208.10 191.47 l
+209.37 192.46 l
+210.65 193.46 l
+211.92 194.45 l
+213.20 195.44 l
+214.47 196.44 l
+215.74 197.43 l
+217.02 198.43 l
+218.29 199.42 l
+219.57 200.41 l
+220.84 201.41 l
+222.12 202.40 l
+223.39 203.39 l
+224.67 204.39 l
+225.94 205.38 l
+227.21 206.37 l
+228.49 207.37 l
+229.76 208.36 l
+231.04 209.35 l
+232.31 210.34 l
+233.59 211.34 l
+234.86 212.33 l
+236.13 213.32 l
+237.41 214.31 l
+238.68 215.31 l
+239.96 216.30 l
+241.23 217.29 l
+242.51 218.28 l
+243.78 219.27 l
+245.06 220.27 l
+246.33 221.26 l
+247.60 222.25 l
+248.88 223.24 l
+250.15 224.23 l
+251.43 225.22 l
+252.70 226.21 l
+253.98 227.21 l
+255.25 228.20 l
+256.53 229.19 l
+257.80 230.18 l
+259.07 231.17 l
+260.35 232.16 l
+261.62 233.15 l
+262.90 234.14 l
+264.17 235.13 l
+265.45 236.12 l
+266.72 237.11 l
+268.00 238.10 l
+269.27 239.09 l
+270.54 240.08 l
+271.82 241.07 l
+273.09 242.06 l
+274.37 243.05 l
+275.64 244.04 l
+276.92 245.03 l
+278.19 246.02 l
+279.47 247.01 l
+280.74 248.00 l
+282.01 248.99 l
+283.29 249.98 l
+284.56 250.97 l
+285.84 251.96 l
+287.11 252.95 l
+288.39 253.93 l
+289.66 254.92 l
+290.94 255.91 l
+292.21 256.90 l
+293.48 257.89 l
+294.76 258.88 l
+296.03 259.87 l
+297.31 260.85 l
+298.58 261.84 l
+299.86 262.83 l
+301.13 263.82 l
+302.41 264.81 l
+303.68 265.80 l
+304.95 266.78 l
+306.23 267.77 l
+307.50 268.76 l
+308.78 269.75 l
+310.05 270.73 l
+311.33 271.72 l
+312.60 272.71 l
+313.88 273.70 l
+315.15 274.68 l
+316.42 275.67 l
+317.70 276.66 l
+318.97 277.64 l
+320.25 278.63 l
+321.52 279.62 l
+322.80 280.61 l
+324.07 281.59 l
+325.35 282.58 l
+326.62 283.57 l
+327.89 284.55 l
+329.17 285.54 l
+330.44 286.52 l
+331.72 287.51 l
+332.99 288.50 l
+334.27 289.48 l
+335.54 290.47 l
+336.81 291.46 l
+338.09 292.44 l
+339.36 293.43 l
+340.64 294.41 l
+341.91 295.40 l
+343.19 296.38 l
+344.46 297.37 l
+345.74 298.36 l
+347.01 299.34 l
+348.28 300.33 l
+349.56 301.31 l
+350.83 302.30 l
+352.11 303.28 l
+353.38 304.27 l
+354.66 305.25 l
+355.93 306.24 l
+357.21 307.22 l
+358.48 308.21 l
+359.75 309.19 l
+361.03 310.18 l
+362.30 311.16 l
+363.58 312.15 l
+364.85 313.13 l
+366.13 314.11 l
+367.40 315.10 l
+368.68 316.08 l
+369.95 317.07 l
+371.22 318.05 l
+372.50 319.04 l
+373.77 320.02 l
+375.05 321.00 l
+376.32 321.99 l
+377.60 322.97 l
+378.87 323.95 l
+380.15 324.94 l
+381.42 325.92 l
+382.69 326.91 l
+383.97 327.89 l
+385.24 328.87 l
+386.52 329.86 l
+387.79 330.84 l
+389.07 331.82 l
+S
+71.73 104.62 m
+73.01 105.62 l
+74.28 106.61 l
+75.56 107.60 l
+76.83 108.60 l
+78.11 109.59 l
+79.38 110.59 l
+80.65 111.58 l
+81.93 112.57 l
+83.20 113.57 l
+84.48 114.56 l
+85.75 115.56 l
+87.03 116.55 l
+88.30 117.54 l
+89.58 118.54 l
+90.85 119.53 l
+92.12 120.53 l
+93.40 121.52 l
+94.67 122.52 l
+95.95 123.51 l
+97.22 124.51 l
+98.50 125.50 l
+99.77 126.50 l
+101.05 127.49 l
+102.32 128.49 l
+103.59 129.48 l
+104.87 130.48 l
+106.14 131.48 l
+107.42 132.47 l
+108.69 133.47 l
+109.97 134.46 l
+111.24 135.46 l
+112.52 136.45 l
+113.79 137.45 l
+115.06 138.45 l
+116.34 139.44 l
+117.61 140.44 l
+118.89 141.44 l
+120.16 142.43 l
+121.44 143.43 l
+122.71 144.43 l
+123.99 145.42 l
+125.26 146.42 l
+126.53 147.42 l
+127.81 148.42 l
+129.08 149.41 l
+130.36 150.41 l
+131.63 151.41 l
+132.91 152.41 l
+134.18 153.40 l
+135.45 154.40 l
+136.73 155.40 l
+138.00 156.40 l
+139.28 157.40 l
+140.55 158.39 l
+141.83 159.39 l
+143.10 160.39 l
+144.38 161.39 l
+145.65 162.39 l
+146.92 163.39 l
+148.20 164.39 l
+149.47 165.38 l
+150.75 166.38 l
+152.02 167.38 l
+153.30 168.38 l
+154.57 169.38 l
+155.85 170.38 l
+157.12 171.38 l
+158.39 172.38 l
+159.67 173.38 l
+160.94 174.38 l
+162.22 175.38 l
+163.49 176.38 l
+164.77 177.38 l
+166.04 178.38 l
+167.32 179.38 l
+168.59 180.38 l
+169.86 181.38 l
+171.14 182.38 l
+172.41 183.38 l
+173.69 184.38 l
+174.96 185.38 l
+176.24 186.38 l
+177.51 187.38 l
+178.79 188.38 l
+180.06 189.39 l
+181.33 190.39 l
+182.61 191.39 l
+183.88 192.39 l
+185.16 193.39 l
+186.43 194.39 l
+187.71 195.40 l
+188.98 196.40 l
+190.26 197.40 l
+191.53 198.40 l
+192.80 199.40 l
+194.08 200.41 l
+195.35 201.41 l
+196.63 202.41 l
+197.90 203.41 l
+199.18 204.41 l
+200.45 205.42 l
+201.73 206.42 l
+203.00 207.42 l
+204.27 208.43 l
+205.55 209.43 l
+206.82 210.43 l
+208.10 211.44 l
+209.37 212.44 l
+210.65 213.44 l
+211.92 214.45 l
+213.20 215.45 l
+214.47 216.45 l
+215.74 217.46 l
+217.02 218.46 l
+218.29 219.46 l
+219.57 220.47 l
+220.84 221.47 l
+222.12 222.48 l
+223.39 223.48 l
+224.67 224.49 l
+225.94 225.49 l
+227.21 226.49 l
+228.49 227.50 l
+229.76 228.50 l
+231.04 229.51 l
+232.31 230.51 l
+233.59 231.52 l
+234.86 232.52 l
+236.13 233.53 l
+237.41 234.53 l
+238.68 235.54 l
+239.96 236.55 l
+241.23 237.55 l
+242.51 238.56 l
+243.78 239.56 l
+245.06 240.57 l
+246.33 241.57 l
+247.60 242.58 l
+248.88 243.59 l
+250.15 244.59 l
+251.43 245.60 l
+252.70 246.61 l
+253.98 247.61 l
+255.25 248.62 l
+256.53 249.63 l
+257.80 250.63 l
+259.07 251.64 l
+260.35 252.65 l
+261.62 253.65 l
+262.90 254.66 l
+264.17 255.67 l
+265.45 256.67 l
+266.72 257.68 l
+268.00 258.69 l
+269.27 259.70 l
+270.54 260.70 l
+271.82 261.71 l
+273.09 262.72 l
+274.37 263.73 l
+275.64 264.73 l
+276.92 265.74 l
+278.19 266.75 l
+279.47 267.76 l
+280.74 268.77 l
+282.01 269.78 l
+283.29 270.78 l
+284.56 271.79 l
+285.84 272.80 l
+287.11 273.81 l
+288.39 274.82 l
+289.66 275.83 l
+290.94 276.84 l
+292.21 277.84 l
+293.48 278.85 l
+294.76 279.86 l
+296.03 280.87 l
+297.31 281.88 l
+298.58 282.89 l
+299.86 283.90 l
+301.13 284.91 l
+302.41 285.92 l
+303.68 286.93 l
+304.95 287.94 l
+306.23 288.95 l
+307.50 289.96 l
+308.78 290.97 l
+310.05 291.98 l
+311.33 292.99 l
+312.60 294.00 l
+313.88 295.01 l
+315.15 296.02 l
+316.42 297.03 l
+317.70 298.04 l
+318.97 299.05 l
+320.25 300.06 l
+321.52 301.07 l
+322.80 302.08 l
+324.07 303.09 l
+325.35 304.10 l
+326.62 305.12 l
+327.89 306.13 l
+329.17 307.14 l
+330.44 308.15 l
+331.72 309.16 l
+332.99 310.17 l
+334.27 311.18 l
+335.54 312.20 l
+336.81 313.21 l
+338.09 314.22 l
+339.36 315.23 l
+340.64 316.24 l
+341.91 317.25 l
+343.19 318.27 l
+344.46 319.28 l
+345.74 320.29 l
+347.01 321.30 l
+348.28 322.31 l
+349.56 323.33 l
+350.83 324.34 l
+352.11 325.35 l
+353.38 326.36 l
+354.66 327.38 l
+355.93 328.39 l
+357.21 329.40 l
+358.48 330.41 l
+359.75 331.43 l
+361.03 332.44 l
+362.30 333.45 l
+363.58 334.47 l
+364.85 335.48 l
+366.13 336.49 l
+367.40 337.51 l
+368.68 338.52 l
+369.95 339.53 l
+371.22 340.55 l
+372.50 341.56 l
+373.77 342.57 l
+375.05 343.59 l
+376.32 344.60 l
+377.60 345.61 l
+378.87 346.63 l
+380.15 347.64 l
+381.42 348.66 l
+382.69 349.67 l
+383.97 350.68 l
+385.24 351.70 l
+386.52 352.71 l
+387.79 353.73 l
+389.07 354.74 l
+S
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+71.73 94.58 m
+73.01 95.58 l
+74.28 96.58 l
+75.56 97.58 l
+76.83 98.57 l
+78.11 99.57 l
+79.38 100.57 l
+80.65 101.57 l
+81.93 102.57 l
+83.20 103.57 l
+84.48 104.57 l
+85.75 105.57 l
+87.03 106.56 l
+88.30 107.56 l
+89.58 108.56 l
+90.85 109.56 l
+92.12 110.56 l
+93.40 111.56 l
+94.67 112.56 l
+95.95 113.56 l
+97.22 114.56 l
+98.50 115.55 l
+99.77 116.55 l
+101.05 117.55 l
+102.32 118.55 l
+103.59 119.55 l
+104.87 120.55 l
+106.14 121.55 l
+107.42 122.55 l
+108.69 123.54 l
+109.97 124.54 l
+111.24 125.54 l
+112.52 126.54 l
+113.79 127.54 l
+115.06 128.54 l
+116.34 129.54 l
+117.61 130.54 l
+118.89 131.53 l
+120.16 132.53 l
+121.44 133.53 l
+122.71 134.53 l
+123.99 135.53 l
+125.26 136.53 l
+126.53 137.53 l
+127.81 138.53 l
+129.08 139.53 l
+130.36 140.52 l
+131.63 141.52 l
+132.91 142.52 l
+134.18 143.52 l
+135.45 144.52 l
+136.73 145.52 l
+138.00 146.52 l
+139.28 147.52 l
+140.55 148.51 l
+141.83 149.51 l
+143.10 150.51 l
+144.38 151.51 l
+145.65 152.51 l
+146.92 153.51 l
+148.20 154.51 l
+149.47 155.51 l
+150.75 156.51 l
+152.02 157.50 l
+153.30 158.50 l
+154.57 159.50 l
+155.85 160.50 l
+157.12 161.50 l
+158.39 162.50 l
+159.67 163.50 l
+160.94 164.50 l
+162.22 165.49 l
+163.49 166.49 l
+164.77 167.49 l
+166.04 168.49 l
+167.32 169.49 l
+168.59 170.49 l
+169.86 171.49 l
+171.14 172.49 l
+172.41 173.48 l
+173.69 174.48 l
+174.96 175.48 l
+176.24 176.48 l
+177.51 177.48 l
+178.79 178.48 l
+180.06 179.48 l
+181.33 180.48 l
+182.61 181.48 l
+183.88 182.47 l
+185.16 183.47 l
+186.43 184.47 l
+187.71 185.47 l
+188.98 186.47 l
+190.26 187.47 l
+191.53 188.47 l
+192.80 189.47 l
+194.08 190.46 l
+195.35 191.46 l
+196.63 192.46 l
+197.90 193.46 l
+199.18 194.46 l
+200.45 195.46 l
+201.73 196.46 l
+203.00 197.46 l
+204.27 198.46 l
+205.55 199.45 l
+206.82 200.45 l
+208.10 201.45 l
+209.37 202.45 l
+210.65 203.45 l
+211.92 204.45 l
+213.20 205.45 l
+214.47 206.45 l
+215.74 207.44 l
+217.02 208.44 l
+218.29 209.44 l
+219.57 210.44 l
+220.84 211.44 l
+222.12 212.44 l
+223.39 213.44 l
+224.67 214.44 l
+225.94 215.43 l
+227.21 216.43 l
+228.49 217.43 l
+229.76 218.43 l
+231.04 219.43 l
+232.31 220.43 l
+233.59 221.43 l
+234.86 222.43 l
+236.13 223.43 l
+237.41 224.42 l
+238.68 225.42 l
+239.96 226.42 l
+241.23 227.42 l
+242.51 228.42 l
+243.78 229.42 l
+245.06 230.42 l
+246.33 231.42 l
+247.60 232.41 l
+248.88 233.41 l
+250.15 234.41 l
+251.43 235.41 l
+252.70 236.41 l
+253.98 237.41 l
+255.25 238.41 l
+256.53 239.41 l
+257.80 240.40 l
+259.07 241.40 l
+260.35 242.40 l
+261.62 243.40 l
+262.90 244.40 l
+264.17 245.40 l
+265.45 246.40 l
+266.72 247.40 l
+268.00 248.40 l
+269.27 249.39 l
+270.54 250.39 l
+271.82 251.39 l
+273.09 252.39 l
+274.37 253.39 l
+275.64 254.39 l
+276.92 255.39 l
+278.19 256.39 l
+279.47 257.38 l
+280.74 258.38 l
+282.01 259.38 l
+283.29 260.38 l
+284.56 261.38 l
+285.84 262.38 l
+287.11 263.38 l
+288.39 264.38 l
+289.66 265.38 l
+290.94 266.37 l
+292.21 267.37 l
+293.48 268.37 l
+294.76 269.37 l
+296.03 270.37 l
+297.31 271.37 l
+298.58 272.37 l
+299.86 273.37 l
+301.13 274.36 l
+302.41 275.36 l
+303.68 276.36 l
+304.95 277.36 l
+306.23 278.36 l
+307.50 279.36 l
+308.78 280.36 l
+310.05 281.36 l
+311.33 282.35 l
+312.60 283.35 l
+313.88 284.35 l
+315.15 285.35 l
+316.42 286.35 l
+317.70 287.35 l
+318.97 288.35 l
+320.25 289.35 l
+321.52 290.35 l
+322.80 291.34 l
+324.07 292.34 l
+325.35 293.34 l
+326.62 294.34 l
+327.89 295.34 l
+329.17 296.34 l
+330.44 297.34 l
+331.72 298.34 l
+332.99 299.33 l
+334.27 300.33 l
+335.54 301.33 l
+336.81 302.33 l
+338.09 303.33 l
+339.36 304.33 l
+340.64 305.33 l
+341.91 306.33 l
+343.19 307.33 l
+344.46 308.32 l
+345.74 309.32 l
+347.01 310.32 l
+348.28 311.32 l
+349.56 312.32 l
+350.83 313.32 l
+352.11 314.32 l
+353.38 315.32 l
+354.66 316.31 l
+355.93 317.31 l
+357.21 318.31 l
+358.48 319.31 l
+359.75 320.31 l
+361.03 321.31 l
+362.30 322.31 l
+363.58 323.31 l
+364.85 324.30 l
+366.13 325.30 l
+367.40 326.30 l
+368.68 327.30 l
+369.95 328.30 l
+371.22 329.30 l
+372.50 330.30 l
+373.77 331.30 l
+375.05 332.30 l
+376.32 333.29 l
+377.60 334.29 l
+378.87 335.29 l
+380.15 336.29 l
+381.42 337.29 l
+382.69 338.29 l
+383.97 339.29 l
+385.24 340.29 l
+386.52 341.28 l
+387.79 342.28 l
+389.07 343.28 l
+S
+0.000 0.545 0.000 RG
+0.75 w
+[ 0.00 4.00] 0 d
+71.73 91.96 m
+73.01 92.98 l
+74.28 94.00 l
+75.56 95.02 l
+76.83 96.04 l
+78.11 97.06 l
+79.38 98.08 l
+80.65 99.10 l
+81.93 100.11 l
+83.20 101.13 l
+84.48 102.15 l
+85.75 103.17 l
+87.03 104.19 l
+88.30 105.20 l
+89.58 106.22 l
+90.85 107.24 l
+92.12 108.26 l
+93.40 109.27 l
+94.67 110.29 l
+95.95 111.30 l
+97.22 112.32 l
+98.50 113.33 l
+99.77 114.35 l
+101.05 115.36 l
+102.32 116.38 l
+103.59 117.39 l
+104.87 118.41 l
+106.14 119.42 l
+107.42 120.43 l
+108.69 121.45 l
+109.97 122.46 l
+111.24 123.47 l
+112.52 124.48 l
+113.79 125.49 l
+115.06 126.50 l
+116.34 127.51 l
+117.61 128.52 l
+118.89 129.53 l
+120.16 130.54 l
+121.44 131.55 l
+122.71 132.56 l
+123.99 133.57 l
+125.26 134.58 l
+126.53 135.58 l
+127.81 136.59 l
+129.08 137.60 l
+130.36 138.60 l
+131.63 139.61 l
+132.91 140.61 l
+134.18 141.62 l
+135.45 142.62 l
+136.73 143.62 l
+138.00 144.63 l
+139.28 145.63 l
+140.55 146.63 l
+141.83 147.63 l
+143.10 148.63 l
+144.38 149.63 l
+145.65 150.63 l
+146.92 151.63 l
+148.20 152.63 l
+149.47 153.63 l
+150.75 154.63 l
+152.02 155.62 l
+153.30 156.62 l
+154.57 157.62 l
+155.85 158.61 l
+157.12 159.61 l
+158.39 160.60 l
+159.67 161.60 l
+160.94 162.59 l
+162.22 163.59 l
+163.49 164.58 l
+164.77 165.57 l
+166.04 166.56 l
+167.32 167.56 l
+168.59 168.55 l
+169.86 169.54 l
+171.14 170.53 l
+172.41 171.52 l
+173.69 172.51 l
+174.96 173.50 l
+176.24 174.48 l
+177.51 175.47 l
+178.79 176.46 l
+180.06 177.45 l
+181.33 178.43 l
+182.61 179.42 l
+183.88 180.41 l
+185.16 181.39 l
+186.43 182.38 l
+187.71 183.36 l
+188.98 184.35 l
+190.26 185.33 l
+191.53 186.31 l
+192.80 187.30 l
+194.08 188.28 l
+195.35 189.26 l
+196.63 190.25 l
+197.90 191.23 l
+199.18 192.21 l
+200.45 193.19 l
+201.73 194.18 l
+203.00 195.16 l
+204.27 196.14 l
+205.55 197.12 l
+206.82 198.10 l
+208.10 199.08 l
+209.37 200.06 l
+210.65 201.04 l
+211.92 202.02 l
+213.20 203.00 l
+214.47 203.98 l
+215.74 204.95 l
+217.02 205.93 l
+218.29 206.91 l
+219.57 207.89 l
+220.84 208.87 l
+222.12 209.84 l
+223.39 210.82 l
+224.67 211.80 l
+225.94 212.78 l
+227.21 213.75 l
+228.49 214.73 l
+229.76 215.71 l
+231.04 216.68 l
+232.31 217.66 l
+233.59 218.64 l
+234.86 219.61 l
+236.13 220.59 l
+237.41 221.56 l
+238.68 222.54 l
+239.96 223.52 l
+241.23 224.49 l
+242.51 225.47 l
+243.78 226.44 l
+245.06 227.42 l
+246.33 228.39 l
+247.60 229.37 l
+248.88 230.34 l
+250.15 231.31 l
+251.43 232.29 l
+252.70 233.26 l
+253.98 234.24 l
+255.25 235.21 l
+256.53 236.18 l
+257.80 237.16 l
+259.07 238.13 l
+260.35 239.11 l
+261.62 240.08 l
+262.90 241.05 l
+264.17 242.03 l
+265.45 243.00 l
+266.72 243.97 l
+268.00 244.95 l
+269.27 245.92 l
+270.54 246.89 l
+271.82 247.86 l
+273.09 248.84 l
+274.37 249.81 l
+275.64 250.78 l
+276.92 251.76 l
+278.19 252.73 l
+279.47 253.70 l
+280.74 254.67 l
+282.01 255.65 l
+283.29 256.62 l
+284.56 257.59 l
+285.84 258.56 l
+287.11 259.53 l
+288.39 260.51 l
+289.66 261.48 l
+290.94 262.45 l
+292.21 263.42 l
+293.48 264.39 l
+294.76 265.36 l
+296.03 266.34 l
+297.31 267.31 l
+298.58 268.28 l
+299.86 269.25 l
+301.13 270.22 l
+302.41 271.19 l
+303.68 272.17 l
+304.95 273.14 l
+306.23 274.11 l
+307.50 275.08 l
+308.78 276.05 l
+310.05 277.02 l
+311.33 277.99 l
+312.60 278.96 l
+313.88 279.94 l
+315.15 280.91 l
+316.42 281.88 l
+317.70 282.85 l
+318.97 283.82 l
+320.25 284.79 l
+321.52 285.76 l
+322.80 286.73 l
+324.07 287.70 l
+325.35 288.67 l
+326.62 289.64 l
+327.89 290.61 l
+329.17 291.59 l
+330.44 292.56 l
+331.72 293.53 l
+332.99 294.50 l
+334.27 295.47 l
+335.54 296.44 l
+336.81 297.41 l
+338.09 298.38 l
+339.36 299.35 l
+340.64 300.32 l
+341.91 301.29 l
+343.19 302.26 l
+344.46 303.23 l
+345.74 304.20 l
+347.01 305.17 l
+348.28 306.14 l
+349.56 307.11 l
+350.83 308.08 l
+352.11 309.05 l
+353.38 310.02 l
+354.66 310.99 l
+355.93 311.96 l
+357.21 312.93 l
+358.48 313.90 l
+359.75 314.87 l
+361.03 315.84 l
+362.30 316.81 l
+363.58 317.78 l
+364.85 318.75 l
+366.13 319.72 l
+367.40 320.69 l
+368.68 321.66 l
+369.95 322.63 l
+371.22 323.60 l
+372.50 324.57 l
+373.77 325.54 l
+375.05 326.51 l
+376.32 327.48 l
+377.60 328.45 l
+378.87 329.42 l
+380.15 330.39 l
+381.42 331.36 l
+382.69 332.33 l
+383.97 333.30 l
+385.24 334.27 l
+386.52 335.24 l
+387.79 336.21 l
+389.07 337.18 l
+S
+71.73 97.20 m
+73.01 98.18 l
+74.28 99.15 l
+75.56 100.13 l
+76.83 101.11 l
+78.11 102.09 l
+79.38 103.07 l
+80.65 104.05 l
+81.93 105.02 l
+83.20 106.00 l
+84.48 106.98 l
+85.75 107.96 l
+87.03 108.94 l
+88.30 109.92 l
+89.58 110.90 l
+90.85 111.88 l
+92.12 112.86 l
+93.40 113.85 l
+94.67 114.83 l
+95.95 115.81 l
+97.22 116.79 l
+98.50 117.77 l
+99.77 118.76 l
+101.05 119.74 l
+102.32 120.72 l
+103.59 121.71 l
+104.87 122.69 l
+106.14 123.67 l
+107.42 124.66 l
+108.69 125.64 l
+109.97 126.63 l
+111.24 127.61 l
+112.52 128.60 l
+113.79 129.59 l
+115.06 130.57 l
+116.34 131.56 l
+117.61 132.55 l
+118.89 133.54 l
+120.16 134.52 l
+121.44 135.51 l
+122.71 136.50 l
+123.99 137.49 l
+125.26 138.48 l
+126.53 139.47 l
+127.81 140.46 l
+129.08 141.45 l
+130.36 142.45 l
+131.63 143.44 l
+132.91 144.43 l
+134.18 145.43 l
+135.45 146.42 l
+136.73 147.41 l
+138.00 148.41 l
+139.28 149.40 l
+140.55 150.40 l
+141.83 151.40 l
+143.10 152.39 l
+144.38 153.39 l
+145.65 154.39 l
+146.92 155.39 l
+148.20 156.38 l
+149.47 157.38 l
+150.75 158.38 l
+152.02 159.38 l
+153.30 160.38 l
+154.57 161.39 l
+155.85 162.39 l
+157.12 163.39 l
+158.39 164.39 l
+159.67 165.39 l
+160.94 166.40 l
+162.22 167.40 l
+163.49 168.41 l
+164.77 169.41 l
+166.04 170.42 l
+167.32 171.42 l
+168.59 172.43 l
+169.86 173.44 l
+171.14 174.45 l
+172.41 175.45 l
+173.69 176.46 l
+174.96 177.47 l
+176.24 178.48 l
+177.51 179.49 l
+178.79 180.50 l
+180.06 181.51 l
+181.33 182.52 l
+182.61 183.53 l
+183.88 184.54 l
+185.16 185.55 l
+186.43 186.57 l
+187.71 187.58 l
+188.98 188.59 l
+190.26 189.61 l
+191.53 190.62 l
+192.80 191.63 l
+194.08 192.65 l
+195.35 193.66 l
+196.63 194.68 l
+197.90 195.69 l
+199.18 196.71 l
+200.45 197.72 l
+201.73 198.74 l
+203.00 199.76 l
+204.27 200.77 l
+205.55 201.79 l
+206.82 202.81 l
+208.10 203.82 l
+209.37 204.84 l
+210.65 205.86 l
+211.92 206.88 l
+213.20 207.90 l
+214.47 208.92 l
+215.74 209.93 l
+217.02 210.95 l
+218.29 211.97 l
+219.57 212.99 l
+220.84 214.01 l
+222.12 215.03 l
+223.39 216.05 l
+224.67 217.07 l
+225.94 218.09 l
+227.21 219.11 l
+228.49 220.13 l
+229.76 221.15 l
+231.04 222.18 l
+232.31 223.20 l
+233.59 224.22 l
+234.86 225.24 l
+236.13 226.26 l
+237.41 227.28 l
+238.68 228.31 l
+239.96 229.33 l
+241.23 230.35 l
+242.51 231.37 l
+243.78 232.40 l
+245.06 233.42 l
+246.33 234.44 l
+247.60 235.46 l
+248.88 236.49 l
+250.15 237.51 l
+251.43 238.53 l
+252.70 239.56 l
+253.98 240.58 l
+255.25 241.60 l
+256.53 242.63 l
+257.80 243.65 l
+259.07 244.68 l
+260.35 245.70 l
+261.62 246.72 l
+262.90 247.75 l
+264.17 248.77 l
+265.45 249.80 l
+266.72 250.82 l
+268.00 251.85 l
+269.27 252.87 l
+270.54 253.89 l
+271.82 254.92 l
+273.09 255.94 l
+274.37 256.97 l
+275.64 257.99 l
+276.92 259.02 l
+278.19 260.04 l
+279.47 261.07 l
+280.74 262.09 l
+282.01 263.12 l
+283.29 264.14 l
+284.56 265.17 l
+285.84 266.20 l
+287.11 267.22 l
+288.39 268.25 l
+289.66 269.27 l
+290.94 270.30 l
+292.21 271.32 l
+293.48 272.35 l
+294.76 273.38 l
+296.03 274.40 l
+297.31 275.43 l
+298.58 276.45 l
+299.86 277.48 l
+301.13 278.51 l
+302.41 279.53 l
+303.68 280.56 l
+304.95 281.58 l
+306.23 282.61 l
+307.50 283.64 l
+308.78 284.66 l
+310.05 285.69 l
+311.33 286.72 l
+312.60 287.74 l
+313.88 288.77 l
+315.15 289.80 l
+316.42 290.82 l
+317.70 291.85 l
+318.97 292.88 l
+320.25 293.90 l
+321.52 294.93 l
+322.80 295.96 l
+324.07 296.98 l
+325.35 298.01 l
+326.62 299.04 l
+327.89 300.06 l
+329.17 301.09 l
+330.44 302.12 l
+331.72 303.15 l
+332.99 304.17 l
+334.27 305.20 l
+335.54 306.23 l
+336.81 307.25 l
+338.09 308.28 l
+339.36 309.31 l
+340.64 310.34 l
+341.91 311.36 l
+343.19 312.39 l
+344.46 313.42 l
+345.74 314.44 l
+347.01 315.47 l
+348.28 316.50 l
+349.56 317.53 l
+350.83 318.55 l
+352.11 319.58 l
+353.38 320.61 l
+354.66 321.64 l
+355.93 322.66 l
+357.21 323.69 l
+358.48 324.72 l
+359.75 325.75 l
+361.03 326.77 l
+362.30 327.80 l
+363.58 328.83 l
+364.85 329.86 l
+366.13 330.89 l
+367.40 331.91 l
+368.68 332.94 l
+369.95 333.97 l
+371.22 335.00 l
+372.50 336.02 l
+373.77 337.05 l
+375.05 338.08 l
+376.32 339.11 l
+377.60 340.14 l
+378.87 341.16 l
+380.15 342.19 l
+381.42 343.22 l
+382.69 344.25 l
+383.97 345.27 l
+385.24 346.30 l
+386.52 347.33 l
+387.79 348.36 l
+389.07 349.39 l
+S
+0.949 0.949 0.949 rg
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+71.73 354.74 133.62 -51.84 re B
+1.50 w
+[] 0 d
+81.45 341.78 m 100.89 341.78 l S
+0.000 0.545 0.000 RG
+1.50 w
+[ 0.00 6.00] 0 d
+81.45 328.82 m 100.89 328.82 l S
+1.000 0.000 0.000 RG
+1.50 w
+[ 0.00 6.00 4.50 6.00] 0 d
+81.45 315.86 m 100.89 315.86 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 11.00 0.00 -0.00 11.00 110.61 337.83 Tm (Fitted Line) Tj
+/F2 1 Tf 11.00 0.00 -0.00 11.00 110.61 324.87 Tm (Confidence Bands) Tj
+/F2 1 Tf 11.00 0.00 -0.00 11.00 110.61 311.91 Tm (Prediction Bands) Tj
+ET
+Q
+endstream
+endobj
+8 0 obj
+27760
+endobj
+3 0 obj
+<<
+/Type /Pages
+/Kids [
+6 0 R
+]
+/Count 1
+/MediaBox [0 0 432 432]
+>>
+endobj
+4 0 obj
+<<
+/ProcSet [/PDF /Text]
+/Font << /F1 5 0 R /F2 10 0 R >>
+/ExtGState << >>
+>>
+endobj
+9 0 obj
+<<
+/Type /Encoding
+/BaseEncoding /WinAnsiEncoding
+/Differences [ 45/minus 96/quoteleft
+144/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
+/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron /space]
+>>
+endobj
+10 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F2
+/BaseFont /Helvetica
+/Encoding 9 0 R
+>> endobj
+xref
+0 11
+0000000000 65535 f
+0000000021 00000 n
+0000000163 00000 n
+0000028209 00000 n
+0000028292 00000 n
+0000000212 00000 n
+0000000295 00000 n
+0000000375 00000 n
+0000028188 00000 n
+0000028385 00000 n
+0000028642 00000 n
+trailer
+<<
+/Size 11
+/Info 1 0 R
+/Root 2 0 R
+>>
+startxref
+28739
+%%EOF
diff --git a/inst/doc/chemCal.Rnw b/inst/doc/chemCal.Rnw
new file mode 100644
index 0000000..2c902ab
--- /dev/null
+++ b/inst/doc/chemCal.Rnw
@@ -0,0 +1,87 @@
+\documentclass[a4paper]{article}
+%\VignetteIndexEntry{Short manual for the chemCal package}
+\newcommand{\chemCal}{{\tt chemCal}}
+\newcommand{\calplot}{{\tt calplot}}
+\newcommand{\calpredict}{{\tt calpredict}}
+\newcommand{\R}{{\tt R}}
+\usepackage{hyperref}
+
+\title{Basic calibration functions for analytical chemistry}
+\author{Johannes Ranke}
+
+\begin{document}
+\maketitle
+
+The \chemCal{} package was first designed in the course of a lecture and lab
+course on "analytics of organic trace contaminants" at the University of Bremen
+from October to December 2004. In the fall 2005, an email exchange with
+Ron Wehrens led to the belief that it could be heavily improved if the
+inverse prediction method given in \cite{massart97} would be implemented,
+since it also covers the case of weighted regression.
+
+At the moment, the package only consists of two functions, working
+on univariate linear models of class \texttt{lm}.
+
+When calibrating an analytical method, the first task is to generate
+a suitable model. If we want to use the \chemCal{} functions, we
+will have to restrict ourselves to univariate, possibly weighted, linear
+regression so far.
+
+Once such a model has been created, the calibration can be graphically
+shown by using the \texttt{calplot} function:
+
+<<echo=TRUE,fig=TRUE>>=
+library(chemCal)
+data(massart97ex3)
+attach(massart97ex3)
+yx <- split(y,factor(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)
+calplot(m)
+@
+
+This is a reproduction of Example 8 in \cite{massart97}. We can
+see the influence of the weighted regression on the confidence
+and prediction bands of the calibration.
+
+If we now want to predict a new x value from measured y values,
+we use the \texttt{inverse.predict} function:
+
+<<>>=
+inverse.predict(m,15,ws=1.67)
+@
+
+The weight \texttt{ws} assigned to the measured y value has to be
+given by the user in the case of weighted regression. By default,
+the mean of the weights used in the linear regression is used.
+
+\section*{Theory}
+Equation 8.28 in \cite{massart97} gives a general equation for predicting x
+from measurements of y according to the linear calibration function
+$ y = b_0 + b_1 \cdot x$:
+
+\begin{equation}
+s_{\hat{x_s}} = \frac{s_e}{b_1} \sqrt{\frac{1}{w_s m} + \frac{1}{\sum{w_i}} +
+ \frac{(\bar{y_s} - \bar{y_w})^2 \sum{w_i}}
+ {{b_1}^2 \left( \sum{w_i} \sum{w_i {x_i}^2} - {\left( \sum{ w_i x_i } \right)}^2 \right) }}
+\end{equation}
+
+with
+
+\begin{equation}
+s_e = \sqrt{ \frac{\sum w_i (y_i - \hat{y})^2}{n - 2}}
+\end{equation}
+
+
+\begin{thebibliography}{1}
+\bibitem{massart97}
+Massart, L.M, Vandenginste, B.G.M., Buydens, L.M.C., De Jong, S., Lewi, P.J.,
+Smeyers-Verbeke, J.
+\newblock Handbook of Chemometrics and Qualimetrics: Part A,
+\newblock Elsevier, Amsterdam, 1997
+\end{thebibliography}
+
+\end{document}
diff --git a/inst/doc/chemCal.aux b/inst/doc/chemCal.aux
new file mode 100644
index 0000000..0eb51cc
--- /dev/null
+++ b/inst/doc/chemCal.aux
@@ -0,0 +1,17 @@
+\relax
+\ifx\hyper@anchor\@undefined
+\global \let \oldcontentsline\contentsline
+\gdef \contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
+\global \let \oldnewlabel\newlabel
+\gdef \newlabel#1#2{\newlabelxx{#1}#2}
+\gdef \newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
+\AtEndDocument{\let \contentsline\oldcontentsline
+\let \newlabel\oldnewlabel}
+\else
+\global \let \hyper@last\relax
+\fi
+
+\citation{massart97}
+\citation{massart97}
+\citation{massart97}
+\bibcite{massart97}{1}
diff --git a/inst/doc/chemCal.bbl b/inst/doc/chemCal.bbl
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/inst/doc/chemCal.bbl
diff --git a/inst/doc/chemCal.blg b/inst/doc/chemCal.blg
new file mode 100644
index 0000000..72f5a0e
--- /dev/null
+++ b/inst/doc/chemCal.blg
@@ -0,0 +1,46 @@
+This is BibTeX, Version 0.99c (Web2C 7.5.4)
+The top-level auxiliary file: chemCal.aux
+I found no \bibdata command---while reading file chemCal.aux
+I found no \bibstyle command---while reading file chemCal.aux
+You've used 1 entry,
+ 0 wiz_defined-function locations,
+ 84 strings with 497 characters,
+and the built_in function-call counts, 0 in all, are:
+= -- 0
+> -- 0
+< -- 0
++ -- 0
+- -- 0
+* -- 0
+:= -- 0
+add.period$ -- 0
+call.type$ -- 0
+change.case$ -- 0
+chr.to.int$ -- 0
+cite$ -- 0
+duplicate$ -- 0
+empty$ -- 0
+format.name$ -- 0
+if$ -- 0
+int.to.chr$ -- 0
+int.to.str$ -- 0
+missing$ -- 0
+newline$ -- 0
+num.names$ -- 0
+pop$ -- 0
+preamble$ -- 0
+purify$ -- 0
+quote$ -- 0
+skip$ -- 0
+stack$ -- 0
+substring$ -- 0
+swap$ -- 0
+text.length$ -- 0
+text.prefix$ -- 0
+top$ -- 0
+type$ -- 0
+warning$ -- 0
+while$ -- 0
+width$ -- 0
+write$ -- 0
+(There were 2 error messages)
diff --git a/inst/doc/chemCal.log b/inst/doc/chemCal.log
new file mode 100644
index 0000000..fadbc89
--- /dev/null
+++ b/inst/doc/chemCal.log
@@ -0,0 +1,364 @@
+This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) (format=pdflatex 2006.4.5) 10 MAY 2006 17:41
+entering extended mode
+**chemCal.tex
+(./chemCal.tex
+LaTeX2e <2003/12/01>
+Babel <v3.8d> and hyphenation patterns for american, french, german, ngerman, b
+ahasa, basque, bulgarian, catalan, croatian, czech, danish, dutch, esperanto, e
+stonian, finnish, greek, icelandic, irish, italian, latin, magyar, norsk, polis
+h, portuges, romanian, russian, serbian, slovak, slovene, spanish, swedish, tur
+kish, ukrainian, nohyphenation, loaded.
+(/usr/share/texmf-tetex/tex/latex/base/article.cls
+Document Class: article 2004/02/16 v1.4f Standard LaTeX document class
+(/usr/share/texmf-tetex/tex/latex/base/size10.clo
+File: size10.clo 2004/02/16 v1.4f Standard LaTeX file (size option)
+)
+\c@part=\count79
+\c@section=\count80
+\c@subsection=\count81
+\c@subsubsection=\count82
+\c@paragraph=\count83
+\c@subparagraph=\count84
+\c@figure=\count85
+\c@table=\count86
+\abovecaptionskip=\skip41
+\belowcaptionskip=\skip42
+\bibindent=\dimen102
+)
+(/usr/share/texmf-tetex/tex/latex/hyperref/hyperref.sty
+Package: hyperref 2003/11/30 v6.74m Hypertext links for LaTeX
+
+(/usr/share/texmf-tetex/tex/latex/graphics/keyval.sty
+Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
+\KV@toks@=\toks14
+)
+\@linkdim=\dimen103
+\Hy@linkcounter=\count87
+\Hy@pagecounter=\count88
+
+(/usr/share/texmf-tetex/tex/latex/hyperref/pd1enc.def
+File: pd1enc.def 2003/11/30 v6.74m Hyperref: PDFDocEncoding definition (HO)
+)
+(/usr/share/texmf-tetex/tex/latex/hyperref/hyperref.cfg
+File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive and teTeX
+)
+Package hyperref Info: Hyper figures OFF on input line 1880.
+Package hyperref Info: Link nesting OFF on input line 1885.
+Package hyperref Info: Hyper index ON on input line 1888.
+Package hyperref Info: Plain pages ON on input line 1893.
+Package hyperref Info: Backreferencing OFF on input line 1900.
+
+Implicit mode ON; LaTeX internals redefined
+Package hyperref Info: Bookmarks ON on input line 2004.
+(/usr/share/texmf-tetex/tex/latex/url/url.sty
+\Urlmuskip=\muskip10
+Package: url 2004/03/15 ver 3.1 Verb mode for urls, etc.
+)
+LaTeX Info: Redefining \url on input line 2143.
+\Fld@menulength=\count89
+\Field@Width=\dimen104
+\Fld@charsize=\dimen105
+\Choice@toks=\toks15
+\Field@toks=\toks16
+Package hyperref Info: Hyper figures OFF on input line 2618.
+Package hyperref Info: Link nesting OFF on input line 2623.
+Package hyperref Info: Hyper index ON on input line 2626.
+Package hyperref Info: backreferencing OFF on input line 2633.
+Package hyperref Info: Link coloring OFF on input line 2638.
+\c@Item=\count90
+\c@Hfootnote=\count91
+)
+*hyperref using default driver hpdftex*
+(/usr/share/texmf-tetex/tex/latex/hyperref/hpdftex.def
+File: hpdftex.def 2003/11/30 v6.74m Hyperref driver for pdfTeX
+
+(/usr/share/texmf-tetex/tex/latex/psnfss/pifont.sty
+Package: pifont 2004/09/15 PSNFSS-v9.2 Pi font support (SPQR)
+LaTeX Font Info: Try loading font information for U+pzd on input line 63.
+
+(/usr/share/texmf-tetex/tex/latex/psnfss/upzd.fd
+File: upzd.fd 2001/06/04 font definitions for U/pzd.
+)
+LaTeX Font Info: Try loading font information for U+psy on input line 64.
+
+(/usr/share/texmf-tetex/tex/latex/psnfss/upsy.fd
+File: upsy.fd 2001/06/04 font definitions for U/psy.
+))
+\Fld@listcount=\count92
+\@outlinefile=\write3
+)
+(/usr/share/R/share/texmf/Sweave.sty
+
+LaTeX Warning: You have requested package `/usr/share/R/share/texmf/Sweave',
+ but the package provides `Sweave'.
+
+Package: Sweave
+(/usr/share/texmf-tetex/tex/latex/base/ifthen.sty
+Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
+)
+(/usr/share/texmf-tetex/tex/latex/graphics/graphicx.sty
+Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
+
+(/usr/share/texmf-tetex/tex/latex/graphics/graphics.sty
+Package: graphics 2001/07/07 v1.0n Standard LaTeX Graphics (DPC,SPQR)
+
+(/usr/share/texmf-tetex/tex/latex/graphics/trig.sty
+Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
+)
+(/usr/share/texmf-tetex/tex/latex/graphics/graphics.cfg
+File: graphics.cfg 2005/02/03 v1.3 graphics configuration of teTeX/TeXLive
+)
+Package graphics Info: Driver file: pdftex.def on input line 80.
+
+(/usr/share/texmf-tetex/tex/latex/graphics/pdftex.def
+File: pdftex.def 2002/06/19 v0.03k graphics/color for pdftex
+\Gread@gobject=\count93
+))
+\Gin@req@height=\dimen106
+\Gin@req@width=\dimen107
+)
+(/usr/share/texmf-tetex/tex/latex/fancyvrb/fancyvrb.sty
+Package: fancyvrb 1998/07/17
+
+Style option: `fancyvrb' v2.6, with DG/SPQR fixes <1998/07/17> (tvz)
+\FV@CodeLineNo=\count94
+\FV@InFile=\read1
+\FV@TabBox=\box26
+\c@FancyVerbLine=\count95
+\FV@StepNumber=\count96
+\FV@OutFile=\write4
+
+No file fancyvrb.cfg.
+) (/usr/share/texmf-tetex/tex/latex/upquote/upquote.sty
+Package: upquote 2003/08/11 v1.1 Covington's upright-quote modification to verb
+atim and verb
+
+(/usr/share/texmf-tetex/tex/latex/base/textcomp.sty
+Package: textcomp 2004/02/22 v1.99f Standard LaTeX package
+Package textcomp Info: Sub-encoding information:
+(textcomp) 5 = only ISO-Adobe without \textcurrency
+(textcomp) 4 = 5 + \texteuro
+(textcomp) 3 = 4 + \textohm
+(textcomp) 2 = 3 + \textestimated + \textcurrency
+(textcomp) 1 = TS1 - \textcircled - \t
+(textcomp) 0 = TS1 (full)
+(textcomp) Font families with sub-encoding setting implement
+(textcomp) only a restricted character set as indicated.
+(textcomp) Family '?' is the default used for unknown fonts.
+(textcomp) See the documentation for details.
+Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71.
+
+(/usr/share/texmf-tetex/tex/latex/base/ts1enc.def
+File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
+)
+LaTeX Info: Redefining \oldstylenums on input line 266.
+Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 281.
+Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 282.
+Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 283.
+Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 284.
+Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 285.
+Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 286.
+Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 287.
+Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 288.
+Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 289.
+Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 290.
+Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 291.
+Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 292.
+Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 293.
+Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 294.
+Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 295.
+Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 296.
+Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 297.
+Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 298.
+Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 299.
+Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 300.
+Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 301.
+Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 302.
+Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 303.
+Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 304.
+
+Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 305.
+Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 306.
+Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 307.
+Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 308.
+Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 309.
+Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 310.
+Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 311.
+Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 312.
+Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 313.
+Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 314.
+Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 315.
+Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 316.
+Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 317.
+Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 318.
+Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 319.
+Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 320.
+Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 321.
+Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 322.
+Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 323.
+Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 324.
+Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 325.
+Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 326.
+))
+(/usr/share/texmf-tetex/tex/latex/base/fontenc.sty
+Package: fontenc 2004/02/22 v1.99f Standard LaTeX package
+
+(/usr/share/texmf-tetex/tex/latex/base/t1enc.def
+File: t1enc.def 2004/02/22 v1.99f Standard LaTeX file
+LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
+))
+(/usr/share/texmf-tetex/tex/latex/ae/ae.sty
+Package: ae 2001/02/12 1.3 Almost European Computer Modern
+
+(/usr/share/texmf-tetex/tex/latex/base/fontenc.sty
+Package: fontenc 2004/02/22 v1.99f Standard LaTeX package
+
+(/usr/share/texmf-tetex/tex/latex/base/t1enc.def
+File: t1enc.def 2004/02/22 v1.99f Standard LaTeX file
+LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
+)
+LaTeX Font Info: Try loading font information for T1+aer on input line 100.
+
+(/usr/share/texmf-tetex/tex/latex/ae/t1aer.fd
+File: t1aer.fd 1997/11/16 Font definitions for T1/aer.
+)))) (./chemCal.aux)
+\openout1 = `chemCal.aux'.
+
+LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 13.
+LaTeX Font Info: ... okay on input line 13.
+LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 13.
+LaTeX Font Info: ... okay on input line 13.
+LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 13.
+LaTeX Font Info: ... okay on input line 13.
+LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 13.
+LaTeX Font Info: ... okay on input line 13.
+LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 13.
+LaTeX Font Info: ... okay on input line 13.
+LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 13.
+LaTeX Font Info: ... okay on input line 13.
+LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 13.
+LaTeX Font Info: ... okay on input line 13.
+LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 13.
+LaTeX Font Info: Try loading font information for TS1+cmr on input line 13.
+
+(/usr/share/texmf-tetex/tex/latex/base/ts1cmr.fd
+File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
+)
+LaTeX Font Info: ... okay on input line 13.
+Package hyperref Info: Link coloring OFF on input line 13.
+
+(/usr/share/texmf-tetex/tex/latex/hyperref/nameref.sty
+Package: nameref 2003/12/03 v2.21 Cross-referencing by name of section
+\c@section@level=\count97
+)
+LaTeX Info: Redefining \ref on input line 13.
+LaTeX Info: Redefining \pageref on input line 13.
+ (./chemCal.out)
+(./chemCal.out)
+\openout3 = `chemCal.out'.
+
+ (/usr/share/texmf-tetex/tex/context/base/supp-pdf.tex
+(/usr/share/texmf-tetex/tex/context/base/supp-mis.tex
+loading : Context Support Macros / Miscellaneous (2004.10.26)
+\protectiondepth=\count98
+\scratchcounter=\count99
+\scratchtoks=\toks17
+\scratchdimen=\dimen108
+\scratchskip=\skip43
+\scratchmuskip=\muskip11
+\scratchbox=\box27
+\scratchread=\read2
+\scratchwrite=\write5
+\zeropoint=\dimen109
+\onepoint=\dimen110
+\onebasepoint=\dimen111
+\minusone=\count100
+\thousandpoint=\dimen112
+\onerealpoint=\dimen113
+\emptytoks=\toks18
+\nextbox=\box28
+\nextdepth=\dimen114
+\everyline=\toks19
+\!!counta=\count101
+\!!countb=\count102
+\recursecounter=\count103
+)
+loading : Context Support Macros / PDF (2004.03.26)
+\nofMPsegments=\count104
+\nofMParguments=\count105
+\MPscratchCnt=\count106
+\MPscratchDim=\dimen115
+\MPnumerator=\count107
+\everyMPtoPDFconversion=\toks20
+)
+LaTeX Font Info: External font `cmex10' loaded for size
+(Font) <12> on input line 15.
+LaTeX Font Info: External font `cmex10' loaded for size
+(Font) <8> on input line 15.
+LaTeX Font Info: External font `cmex10' loaded for size
+(Font) <6> on input line 15.
+LaTeX Font Info: Try loading font information for T1+aett on input line 16.
+ (/usr/share/texmf-tetex/tex/latex/ae/t1aett.fd
+File: t1aett.fd 1997/11/16 Font definitions for T1/aett.
+)
+
+LaTeX Warning: Citation `massart97' on page 1 undefined on input line 20.
+
+<chemCal-001.pdf, id=7, 433.62pt x 433.62pt>
+File: chemCal-001.pdf Graphic file (type pdf)
+ <use chemCal-001.pdf> [1
+
+{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
+
+LaTeX Warning: Citation `massart97' on page 2 undefined on input line 50.
+
+LaTeX Font Info: Try loading font information for TS1+aett on input line 65.
+
+LaTeX Font Info: No file TS1aett.fd. on input line 65.
+
+LaTeX Font Warning: Font shape `TS1/aett/m/n' undefined
+(Font) using `TS1/cmr/m/n' instead
+(Font) for symbol `textasciigrave' on input line 65.
+
+
+LaTeX Warning: Citation `massart97' on page 2 undefined on input line 81.
+
+LaTeX Font Info: External font `cmex10' loaded for size
+(Font) <7> on input line 83.
+LaTeX Font Info: External font `cmex10' loaded for size
+(Font) <5> on input line 83.
+[2 <./chemCal-001.pdf>] [3] (./chemCal.aux)
+
+LaTeX Font Warning: Some font shapes were not available, defaults substituted.
+
+
+LaTeX Warning: There were undefined references.
+
+
+LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right.
+
+ )
+Here is how much of TeX's memory you used:
+ 3752 strings out of 94499
+ 51374 string characters out of 1175814
+ 95260 words of memory out of 1000000
+ 6850 multiletter control sequences out of 10000+50000
+ 24598 words of font info for 57 fonts, out of 500000 for 2000
+ 580 hyphenation exceptions out of 8191
+ 35i,6n,21p,255b,255s stack positions out of 1500i,500n,5000p,200000b,5000s
+PDF statistics:
+ 70 PDF objects out of 300000
+ 9 named destinations out of 131072
+ 22 words of extra memory for PDF output out of 65536
+</usr/share/texmf-tetex/fonts/type1/bluesky/cm/cmex10.pfb></usr/share/texmf-t
+etex/fonts/type1/bluesky/cm/cmmi5.pfb></usr/share/texmf-tetex/fonts/type1/blues
+ky/cm/cmmi7.pfb></usr/share/texmf-tetex/fonts/type1/bluesky/cm/cmsy10.pfb></usr
+/share/texmf-tetex/fonts/type1/bluesky/cm/cmr7.pfb></usr/share/texmf-tetex/font
+s/type1/bluesky/cm/cmmi10.pfb></usr/share/texmf-tetex/fonts/type1/bluesky/cm/cm
+bx12.pfb> </var/cache/fonts/pk/ljfour/jknappen/tc/tcrm1000.600pk></usr/share/te
+xmf-tetex/fonts/type1/bluesky/cm/cmsltt10.pfb></usr/share/texmf-tetex/fonts/typ
+e1/bluesky/cm/cmbx10.pfb></usr/share/texmf-tetex/fonts/type1/bluesky/cm/cmtt10.
+pfb></usr/share/texmf-tetex/fonts/type1/bluesky/cm/cmr10.pfb></usr/share/texmf-
+tetex/fonts/type1/bluesky/cm/cmr12.pfb></usr/share/texmf-tetex/fonts/type1/blue
+sky/cm/cmr17.pfb>
+Output written on chemCal.pdf (3 pages, 105421 bytes).
diff --git a/inst/doc/chemCal.out b/inst/doc/chemCal.out
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/inst/doc/chemCal.out
diff --git a/inst/doc/chemCal.pdf b/inst/doc/chemCal.pdf
new file mode 100644
index 0000000..b0da323
--- /dev/null
+++ b/inst/doc/chemCal.pdf
Binary files differ
diff --git a/man/calm.Rd b/man/calm.Rd
deleted file mode 100644
index c16f663..0000000
--- a/man/calm.Rd
+++ /dev/null
@@ -1,43 +0,0 @@
-\name{calm}
-\alias{calm}
-\alias{print.calm}
-\alias{predict.calm}
-\alias{summary.calm}
-\title{Generate a calibration model}
-\description{
- This function fits a calibration model to the data
- frame.
-}
-\usage{
- calm(data)
-}
-\arguments{
- \item{data}{
- A data frame with numeric x data in the first column and
- numeric y data in the second column.
- }
-}
-\value{
- An object of class \code{calm}, which is derived from
- a linear model \code{lm}, the only difference being that
- it contains the additional attributes \code{xname},
- \code{yname} and \code{intercept}, the latter being a
- boolean reporting wether the model uses an intercept or not.
-}
-\note{
- The decision if the returned model contains an intercept is taken based on
- the significance of the fitted intercept on a significance level of 0.95.
- The methods \code{\link{print.calm}}, \code{\link{predict.calm}}
- \code{\link{summary.calm}} are just newly assigned names for the
- corresponding methods from the class \code{\link{lm}}.
-}
-\examples{
- data(din32645)
- calm(din32645)
-}
-\author{
- Johannes Ranke
- \email{jranke@uni-bremen.de}
- \url{http://www.uft.uni-bremen.de/chemie/ranke}
-}
-\keyword{regression}
diff --git a/man/calplot.lm.Rd b/man/calplot.lm.Rd
new file mode 100644
index 0000000..c2b8116
--- /dev/null
+++ b/man/calplot.lm.Rd
@@ -0,0 +1,55 @@
+\name{calplot}
+\alias{calplot}
+\alias{calplot.default}
+\alias{calplot.lm}
+\title{Plot calibration graphs from univariate linear models}
+\description{
+ Produce graphics of calibration data, the fitted model as well
+ as prediction and confidence bands.
+}
+\usage{
+ calplot(object, xlim = "auto", ylim = "auto",
+ xlab = "Concentration", ylab = "Response", alpha=0.05)
+}
+\arguments{
+ \item{object}{
+ A univariate model object of class \code{\link{lm}} with model formula
+ \code{y ~ x} or \code{y ~ x - 1}.
+ }
+ \item{xlim}{
+ The limits of the plot on the x axis.
+ }
+ \item{ylim}{
+ The limits of the plot on the y axis.
+ }
+ \item{xlab}{
+ The label of the x axis.
+ }
+ \item{ylab}{
+ The label of the y axis.
+ }
+ \item{alpha}{
+ The confidence level for the confidence and prediction bands.
+ }
+}
+\value{
+ A plot of the calibration data, of your fitted model as well as lines showing
+ the confidence limits as well as the prediction limits.
+}
+\examples{
+# Example of a Calibration plot for a weighted regression
+data(massart97ex3)
+attach(massart97ex3)
+yx <- split(y,factor(x))
+s <- round(sapply(yx,sd),digits=2)
+w <- round(1/(s^2),digits=3)
+weights <- w[factor(x)]
+m <- lm(y ~ x,w=weights)
+calplot(m)
+}
+\author{
+ Johannes Ranke
+ \email{jranke@uni-bremen.de}
+ \url{http://www.uft.uni-bremen.de/chemie/ranke}
+}
+\keyword{regression}
diff --git a/man/draper.Rd b/man/draper.Rd
new file mode 100644
index 0000000..6a8de00
--- /dev/null
+++ b/man/draper.Rd
@@ -0,0 +1,9 @@
+\name{draper}
+\alias{draper}
+\title{Regression example with repeated measurements}
+\usage{data(draper)}
+\references{Draper and Smith, Applied Regression Analysis (1981), p. 38}
+\format{A dataframe with 24 observations on 2 variables}
+\description{An example of a regression with multiple measurements per
+factor level.}
+\keyword{datasets}
diff --git a/man/inverse.predict.Rd b/man/inverse.predict.Rd
new file mode 100644
index 0000000..48534c4
--- /dev/null
+++ b/man/inverse.predict.Rd
@@ -0,0 +1,65 @@
+\name{inverse.predict}
+\alias{inverse.predict}
+\alias{inverse.predict.lm}
+\alias{inverse.predict.default}
+\title{Predict x from y for a linear calibration}
+\usage{inverse.predict(object, newdata,
+ ws = ifelse(length(object$weights) > 0, mean(object$weights), 1),
+ alpha=0.05, ss = "auto")
+}
+\arguments{
+ \item{object}{
+ A univariate model object of class \code{\link{lm}} with model formula
+ \code{y ~ x} or \code{y ~ x - 1}.
+ }
+ \item{newdata}{
+ A vector of observed y values for one sample.
+ }
+ \item{ws}{
+ The weight attributed to the sample. The default is to take the
+ mean of the weights in the model, if there are any.
+ }
+ \item{alpha}{
+ The confidence level for the confidence interval to be reported.
+ }
+ \item{ss}{
+ The estimated standard error of the sample measurements. The
+ default is to take the residual standard error from the calibration.
+ }
+}
+\value{
+ A list containing the predicted x value, its standard error and a
+ confidence interval.
+}
+\description{
+ This function predicts x values using a univariate linear model that has been
+ generated for the purpose of calibrating a measurement method. Prediction
+ intervals are given at the specified confidence level.
+ The calculation method was taken from Massart et al. (1997). In particular,
+ Equations 8.26 and 8.28 were combined in order to yield a general treatment
+ of inverse prediction for univariate linear models, taking into account
+ weights that have been used to create the linear model, and at the same
+ time providing the possibility to specify a precision in sample measurements
+ differing from the precision in standard samples used for the calibration.
+ This is elaborated in the package vignette.
+}
+\note{
+ The function was validated with examples 7 and 8 from Massart et al. (1997).
+}
+\references{
+ Massart, L.M, Vandenginste, B.G.M., Buydens, L.M.C., De Jong, S., Lewi, P.J.,
+ Smeyers-Verbeke, J. (1997) Handbook of Chemometrics and Qualimetrics: Part A,
+ p. 200
+}
+\examples{
+data(massart97ex3)
+attach(massart97ex3)
+yx <- split(y,factor(x))
+s <- round(sapply(yx,sd),digits=2)
+w <- round(1/(s^2),digits=3)
+weights <- w[factor(x)]
+m <- lm(y ~ x,w=weights)
+
+inverse.predict(m,c(15))
+}
+\keyword{manip}
diff --git a/man/plot.calm.Rd b/man/plot.calm.Rd
deleted file mode 100644
index bb302c7..0000000
--- a/man/plot.calm.Rd
+++ /dev/null
@@ -1,48 +0,0 @@
-\name{plot.calm}
-\alias{plot.calm}
-\title{Plot calibration graphs from calibration models}
-\description{
- Produce graphics of calibration data, the fitted model as well
- as prediction and confidence intervals.
-}
-\usage{
- plot.calm(x,...,xunit="",yunit="",measurand="",level=0.95)
-}
-\arguments{
- \item{x}{
- A calibration model of type \code{\link{calm}}. It is named
- x here because the generic plot method expects x to be its
- first argument.
- }
- \item{...}{
- I just included this because I wanted to avoid the error messages
- from R CMD check that tell me I should read "Writing R extensions"
- which I did ...
- }
- \item{xunit}{
- The unit of the given values on the x axis as a character vector.
- }
- \item{yunit}{
- The unit of the y axis as a character vector.
- }
- \item{measurand}{
- The name of what is being measured as a character vector.
- }
- \item{level}{
- The confidence level of the confidence and prediction bands. Defaults to
- 0.95.
- }
-}
-\value{
- A plot of the calibration data, of your fitted model as well as lines showing
- the confidence limits and the prediction limits.
-}
-\examples{
-
-}
-\author{
- Johannes Ranke
- \email{jranke@uni-bremen.de}
- \url{http://www.uft.uni-bremen.de/chemie/ranke}
-}
-\keyword{regression}
diff --git a/man/predictx.Rd b/man/predictx.Rd
deleted file mode 100644
index a3946b0..0000000
--- a/man/predictx.Rd
+++ /dev/null
@@ -1,37 +0,0 @@
-\name{predictx}
-\alias{predictx}
-\title{Predict x from y values for calibration models}
-\description{
- This function predicts x values from y values, as in classical calibration,
- including a confindence interval.
-}
-\usage{
- predictx(m,yobs,level=0.95)
-}
-\arguments{
- \item{m}{
- A calibration model of type \code{\link{calm}}.
- }
- \item{yobs}{
- A vector of observed y values for one sample.
- }
- \item{level}{
- The confidence level for the confidence interval to be reported.
- }
-}
-\value{
- A vector containing the estimate (\code{estimate}), its estimated standard
- deviation (\code{sdxpred}), its estimated confidence (\code{confxpred}).
-}
-\examples{
- data(din32645)
- m <- calm(din32645)
- r <- predictx(m,3500,level=0.95)
- cat("\nThe confidence interval is",r[["estimate"]],"+-",r[["confxpred"]],"\n")
-}
-\author{
- Johannes Ranke
- \email{jranke@uni-bremen.de}
- \url{http://www.uft.uni-bremen.de/chemie/ranke}
-}
-\keyword{regression}

Contact - Imprint