Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: compatibility with legacy files on robyn_recreate() #865

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion R/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: Robyn
Type: Package
Title: Semi-Automated Marketing Mix Modeling (MMM) from Meta Marketing Science
Version: 3.10.5.9004
Version: 3.10.5.9005
Authors@R: c(
person("Gufeng", "Zhou", , "[email protected]", c("cre","aut")),
person("Leonel", "Sentana", , "[email protected]", c("aut")),
Expand Down
3 changes: 0 additions & 3 deletions R/R/json.R
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,6 @@ robyn_read <- function(json_file = NULL, step = 1, quiet = FALSE, ...) {
if (!"InputCollect" %in% names(json) && step == 1) {
stop("JSON file must contain InputCollect element")
}
if (!"ModelsCollect" %in% names(json) && step == 2) {
stop("JSON file must contain ModelsCollect element")
}
if (!"ExportedModel" %in% names(json) && step == 2) {
stop("JSON file must contain ExportedModel element")
}
Expand Down