diff options
author | jranke <jranke@edb9625f-4e0d-4859-8d74-9fd3b1da38cb> | 2013-10-22 09:20:26 +0000 |
---|---|---|
committer | jranke <jranke@edb9625f-4e0d-4859-8d74-9fd3b1da38cb> | 2013-10-22 09:20:26 +0000 |
commit | 4e791358857a17940ea9adc51b1c8119a0af8e09 (patch) | |
tree | 851e58722b4732a4cae446b021729b6c0c39070c | |
parent | f02aa6060666df324be3c28e6a87d37c13cb949c (diff) |
- Removed the font.main argument from the call to plot(...) in kinresplot as it produced awkward results
git-svn-id: svn+ssh://svn.r-forge.r-project.org/svnroot/kinfit/pkg/kinfit@123 edb9625f-4e0d-4859-8d74-9fd3b1da38cb
-rw-r--r-- | DESCRIPTION | 6 | ||||
-rw-r--r-- | R/kinresplot.R | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/DESCRIPTION b/DESCRIPTION index 8850816..6567080 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,9 +1,9 @@ Package: kinfit
Type: Package
Title: Routines for fitting kinetic models to chemical degradation data
-Version: 1.1.11
-Date: 2013-02-17
-Author: Johannes Ranke and Katrin Lindenberger
+Version: 1.1.12
+Date: 2013-10-22
+Author: Johannes Ranke, with contributions from Katrin Lindenberger
Maintainer: Johannes Ranke <jranke@uni-bremen.de>
Description: Simple calculation routines based on the FOCUS Kinetics
Report (2006). Only kinetic models for parent only datasets are
diff --git a/R/kinresplot.R b/R/kinresplot.R index 36eb55a..9c84c05 100644 --- a/R/kinresplot.R +++ b/R/kinresplot.R @@ -31,5 +31,5 @@ kinresplot <- function(kinobject, kinmodel, ylab = ylab,
ylim = c( -1.2 * maxabs, 1.2 * maxabs))
abline(h=0, lty=2)
- title(paste("Residuals of", kinmodel, "fit"), font.main = 1)
+ title(paste("Residuals of", kinmodel, "fit"))
}
|