Skip to content

Commit

Permalink
bugfix knob is
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebaron committed Dec 1, 2016
1 parent 6eb61c6 commit 7fa98d4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rdev/R/knobs.R
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ setMethod("knobs", c("mrgmod", "missing"), function(x,...) {

if(length(input)==0) stop("No valid knobs found.", call.=FALSE)



data <- do.call("expand.ev", input)

x <- do.call("update", c(list(x),toupdate))
Expand All @@ -104,6 +102,7 @@ setMethod("knobs", c("mrgmod", "missing"), function(x,...) {
outn <- out@outnames

out <- out %>% as.data.frame
out <- dplyr::select_(out,.dots=setdiff(names(out),whatkn))

data <- data %>% dplyr::select_(.dots=c("ID",whatkn))
out <- dplyr::left_join(out,data, by="ID")
Expand Down

0 comments on commit 7fa98d4

Please sign in to comment.