diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2015-02-21 06:56:35 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2015-02-21 06:56:35 +0100 |
commit | 42739646dc36ff74d43b638fc2c4f5259496e2b9 (patch) | |
tree | c7ecc20cbf6fb85e61f21ab79b1dfc97914ed93a /R | |
parent | df733ceeb044e41922930f89be437e2def92e804 (diff) |
Avoid NOTES in R CMD check
- Export S3 methods
- Avoid using undeclared variable names
Diffstat (limited to 'R')
-rw-r--r-- | R/mkinparplot.R | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/R/mkinparplot.R b/R/mkinparplot.R index 53354db7..a5e8fb89 100644 --- a/R/mkinparplot.R +++ b/R/mkinparplot.R @@ -39,7 +39,7 @@ mkinparplot <- function(object) { for (type in names(n.plot)) { parnames <- get(type) values <- bpar[parnames] - values_with_confints <- data.frame(t(subset(data.frame(t(values)), !is.na(Lower)))) + values_with_confints <- data.frame(t(subset(data.frame(t(values)), !is.na("Lower")))) xlim = switch(type, state.optim = range(c(0, unlist(values)), na.rm = TRUE, finite = TRUE), |