Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
agosiewska committed May 9, 2018
1 parent 23af8a4 commit 98b91a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ importFrom(factoextra,fviz_pca_biplot)
importFrom(fdrtool,phalfnorm)
importFrom(ggrepel,geom_text_repel)
importFrom(grDevices,devAskNewPage)
importFrom(graphics,plot)
importFrom(hnp,hnp)
importFrom(stats,acf)
importFrom(stats,aggregate)
Expand Down
2 changes: 1 addition & 1 deletion R/plotTwoSidedECDF.R
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ getTwoSidedECDF <- function(object, error.scaled, outliers, y.reversed){
}

if (!is.na(outliers)) {
df <- dplyr::arrange(df, res)
df <- df[order(df$res), ]
df$big <- c(rep(TRUE, outliers), rep(FALSE, nrow(object$data) - 2 * outliers), rep(TRUE, outliers))
} else {
df$big <- FALSE
Expand Down
1 change: 1 addition & 0 deletions R/plot_ModelAudit.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#' \link{plotRROC}, \link{plotScaleLocation}, \link{plotTwoSidedECDF}}
#'
#' @importFrom grDevices devAskNewPage
#' @importFrom graphics plot
#'
#' @method plot modelAudit
#'
Expand Down

0 comments on commit 98b91a6

Please sign in to comment.