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 /R | |
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
Diffstat (limited to 'R')
-rw-r--r-- | R/kinresplot.R | 2 |
1 files changed, 1 insertions, 1 deletions
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"))
}
|