-
-
Notifications
You must be signed in to change notification settings - Fork 18
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
Unify plot and table namespaces #1194
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Merge branch 'main' of https://github.com/insightsengineering/teal.modules.clinical # Conflicts: # R/dynamic_assertions.R # man/dyn_assertion.Rd
We can even go one step further and create a new function in tmcplot_with_settings <- function() teal.widgets::plot_with_settings_ui(id = ns("tmcplot")) |
Unit Tests Summary 1 files 70 suites 10s ⏱️ Results for commit 6bcfc46. ♻️ This comment has been updated with latest results. |
Unit Test Performance DifferenceTest suite performance difference
Additional test case details
Results for commit c87468a ♻️ This comment has been updated with latest results. |
…eering/teal.modules.clinical into unify_plot_ns@main
…th tmcplot_with_settings()
Merge branch '553_log_shiny_input_changes@main' into unify_plot_ns@main # Conflicts: # R/tm_a_gee.R # R/tm_a_mmrm.R # R/tm_g_barchart_simple.R # R/tm_g_ci.R # R/tm_g_forest_rsp.R # R/tm_g_forest_tte.R # R/tm_g_ipp.R # R/tm_g_km.R # R/tm_g_lineplot.R # R/tm_g_pp_adverse_events.R # R/tm_g_pp_patient_timeline.R # R/tm_g_pp_therapy.R # R/tm_g_pp_vitals.R # R/tm_t_abnormality.R # R/tm_t_abnormality_by_worst_grade.R # R/tm_t_ancova.R # R/tm_t_binary_outcome.R # R/tm_t_coxreg.R # R/tm_t_events.R # R/tm_t_events_by_grade.R # R/tm_t_events_patyear.R # R/tm_t_events_summary.R # R/tm_t_exposure.R # R/tm_t_logistic.R # R/tm_t_mult_events.R # R/tm_t_pp_basic_info.R # R/tm_t_pp_laboratory.R # R/tm_t_pp_medical_history.R # R/tm_t_pp_prior_medication.R # R/tm_t_shift_by_arm.R # R/tm_t_shift_by_arm_by_worst.R # R/tm_t_shift_by_grade.R # R/tm_t_smq.R # R/tm_t_summary.R # R/tm_t_summary_by.R # R/tm_t_tte.R # R/utils.R
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Most of the plots had the same namespace name called
myplot
. The same for tables, that are calledtables
. It would be great to unify so they are all the same, so that their various features stored ininput
can be excluded from thelogger::log_shiny_input_changes
so that this feature/PR is easier to maintain in the future #1191For now, to exclude all plot width and height changes from the logging one needs to run
to create all plot input names.
When this is merged it's gonna be simplified to
which is easier to maintain.
One last advantage is the unification of all names so it's easier to write tests.