Skip to content

Commit bce870e

Browse files
recode: reduce the size of OutputModels (Part 1) (#683)
* recode: getting rid of some columns in OutputModels Co-authored-by: michellegrushkometa <[email protected]>
1 parent 4f3289d commit bce870e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

R/R/model.R

+3-5
Original file line numberDiff line numberDiff line change
@@ -827,16 +827,14 @@ robyn_mmm <- function(InputCollect,
827827
mape = mape,
828828
lambda = lambda_scaled,
829829
lambda_hp = lambda_hp,
830-
lambda_max = lambda_max,
831-
lambda_min_ratio = lambda_min_ratio,
832830
solID = paste(trial, lng, i, sep = "_"),
833831
trial = trial,
834832
iterNG = lng,
835-
iterPar = i,
836-
df.int = df.int
833+
iterPar = i
837834
)
835+
838836
total_common <- ncol(common)
839-
split_common <- which(colnames(common) == "lambda_min_ratio")
837+
split_common <- which(colnames(common) == "lambda_hp")
840838

841839
resultCollect[["resultHypParam"]] <- as_tibble(hypParamSam) %>%
842840
select(-.data$lambda) %>%

0 commit comments

Comments
 (0)