-
-
Notifications
You must be signed in to change notification settings - Fork 44
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
Teal refactor #768
Teal refactor #768
Conversation
* update examples and example_module to use data * update vignette to use quosures * reprorting vignette updated * reporter previewer module * add parent dataset to data even if not specified in module$filters * deprecate show r code * add .datasets_to_data tests Co-authored-by: Dawid Kałędkowski <[email protected]>
Code Coverage Summary
Results for commit: 79542cb Minimum allowed coverage is ♻️ This comment has been updated with latest results |
Signed-off-by: Nikolas Burkoff <[email protected]>
card$append_text("Show R Code", "header3") | ||
card$append_text(paste(teal.code::chunks_get_rcode(simple_chunks), collapse = "\n"), "verbatim") | ||
card$append_text(paste(teal.code::get_code(table_q()), collapse = "\n"), "verbatim") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be append src @Polkas
Signed-off-by: Nikolas Burkoff <[email protected]>
Signed-off-by: Nikolas Burkoff <[email protected]>
Signed-off-by: Nikolas Burkoff <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't approve own PR but I'm happy with this 🏆
R/tdata.R
Outdated
@@ -0,0 +1,171 @@ | |||
#' Create a new `tdata` object which contains |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The title of the manual for tdata is Create a new tdata
object which contains.
It felt incorrect.
Along with the description, maybe we can do something like this?
#' Create a `tdata` Object
#'
#' Create a new object called `tdata` which contains `data`, a `reactive` list of data.frames
#' (or `MultiAssayExperiment`), with attributes:
#' \itemize{
#' \item{`code` (`reactive`) containing code used to generate the data}
#' \item{join_keys (`JoinKeys`) containing the relationships between the data}
#' \item{metadata (`named list`) containing any metadata associated with the data frames}
#' }
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup - done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor update.
Co-authored-by: Dony Unardi <[email protected]> Signed-off-by: Nikolas Burkoff <[email protected]>
Part of #731