You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Base on cohortBuilder metadata generete repro code using cohortBuilder code.
Example:
cohort(
filter(
"discrete", id = "author", dataset = "books",
variable = "author", value = "Dan Brown"
),
filter(
"range", id = "copies", dataset = "books",
variable = "copies", range = c(5, 10)
),
filter(
"date_range", id = "registered", dataset = "borrowers",
variable = "registered", range = c(as.Date("2010-01-01"), Inf)
)
)
This code should be returned by get_state or code function.
I think, the best way of having that will be to support multiple type of output for repro code.
@krystian8207 could you share your though about that. What will be the best way to implement. Using existing code functionality or create a new function?
The text was updated successfully, but these errors were encountered:
Base on cohortBuilder metadata generete repro code using cohortBuilder code.
Example:
This code should be returned by
get_state
orcode
function.I think, the best way of having that will be to support multiple type of output for repro code.
@krystian8207 could you share your though about that. What will be the best way to implement. Using existing
code
functionality or create a new function?The text was updated successfully, but these errors were encountered: