Skip to content

Commit

Permalink
updated NAMESPACE & DESCRIPTION
Browse files Browse the repository at this point in the history
  • Loading branch information
aloy committed Dec 10, 2015
1 parent 47de17a commit 0addc77
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Depends:
Imports:
ggplot2 (>= 0.9.2),
stats,
methods,
plyr,
reshape2,
MASS,
Expand Down
16 changes: 11 additions & 5 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,21 @@ import(ggplot2)
import(RLRsim)
import(Matrix)
#import(lme4)
#import(methods)
importFrom("grDevices", "devAskNewPage")
importFrom("methods", "as", "is")
importFrom("stats", "IQR", "aggregate", "complete.cases", "fitted",
"formula", "lm", "lm.influence", "model.frame",
"model.matrix", "ppoints", "qnorm", "qt", "quantile",
"reorder", "resid", "rstandard", "varimax", "vcov",
"cooks.distance", "covratio", "coef", "confint")
import(plyr)
importFrom(reshape2, "melt")
importFrom(reshape2, "dcast")
importFrom(MASS, "rlm")
importFrom(mgcv, "tensor.prod.model.matrix")
importFrom(stats,"cooks.distance")
importFrom(stats,covratio)
importFrom(stats,"coef")
importFrom(stats,"confint")
#importFrom(stats,"cooks.distance")
#importFrom(stats,covratio)
#importFrom(stats,"coef")
#importFrom(stats,"confint")
#importFrom(stats,plot)
useDynLib(HLMdiag)
4 changes: 2 additions & 2 deletions R/group_level_residual_functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ compare_eb_ls <- function(eb, ols, identify = FALSE, silent = TRUE, ...){
#ret <- list(ret, subset(extreme, unusual == TRUE))
ret <- list(ret, extreme)
}
oask <- devAskNewPage(TRUE)
on.exit(devAskNewPage(oask))
oask <- grDevices::devAskNewPage(TRUE)
on.exit(grDevices::devAskNewPage(oask))
print(p)
}

Expand Down
13 changes: 12 additions & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,15 @@
* win-builder (devel and release)

## R CMD check results
There were no ERRORs, WARNINGs, or NOTEs in R 3.2.2 or R-devel.
There were no ERRORs, WARNINGs, or NOTEs in R 3.2.2 or R-devel.

## Resubmission
Added the following to the NAMESPACE to eliminate notes

importFrom("grDevices", "devAskNewPage")
importFrom("methods", "as", "is")
importFrom("stats", "IQR", "aggregate", "complete.cases", "fitted",
"formula", "lm", "lm.influence", "model.frame",
"model.matrix", "ppoints", "qnorm", "qt", "quantile",
"reorder", "resid", "rstandard", "varimax", "vcov",
"cooks.distance", "covratio", "coef", "confint")

0 comments on commit 0addc77

Please sign in to comment.