Skip to content

Commit

Permalink
using suppress message
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinErickson committed Sep 22, 2019
1 parent b0fd00d commit d986a8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scratch/scratch_hype.R
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ hype <- R6::R6Class(
},
add_data = function(X, Y) {
self$ffexp <- updatedffexp
updatedffexp <- self$ffexp$add_level("Xdf", X)
updatedffexp <- self$ffexp$add_level("Xdf", X, suppressMessage=TRUE)
stop("need to add Y too")
invisible(self)
},
Expand Down Expand Up @@ -125,7 +125,7 @@ hype <- R6::R6Class(
upper=self$parupper)
}
newX <- EIout$par
updatedffexp <- self$ffexp$add_level("Xdf", newX)
updatedffexp <- self$ffexp$add_level("Xdf", newX, suppressMessage=TRUE)
self$ffexp <- updatedffexp
invisible(self)
},
Expand Down

0 comments on commit d986a8b

Please sign in to comment.