Releases: insightsengineering/teal.modules.clinical
Releases · insightsengineering/teal.modules.clinical
v0.12.0
Enhancements
- Modules return a
teal_reportobject that contains the data, code and report. All the reporter buttons were removed from the modules' UI in favor of the framework level reporter buttons (#1376). - Added
xticksparameter totm_g_kmmodule to allow users to specify x-axis tick positions programmatically.
Whenxticksis provided, the interactive input field is pre-populated with the specified values as a default.
Users can then modify these values interactively, and their changes will take precedence over the default.
WhenxticksisNULL(default), users can specify this interactively in the module. - Updated
Rversion dependency from 4.0 to 4.4.0, as upstream dependencyternrequires this.
Bug fixes
- Modules
tm_t_summaryandtm_t_summary_bynow display and hide missing values (#1437).
What's Changed
- Fix hanging behavior in tm_t_shift_by_grade when data validation fails by @Copilot in #1416
- 1384 expose
xticksfortm_g_kmby @m7pr in #1419 - Add labels back only if needed by @llrs-roche in #1426
- Change R dependency version to 4.4.0 by @shajoezhu in #1422
- Address issues related to testing with shinytest2 the examples by @llrs-roche in #1423
- 📑 Reporter Refactor: Adds support for new
teal_reportandteal_cardclass by @m7pr in #1392 - Removes 2 reporter buttons by @averissimo in #1428
- Remove source code button from modules' encoding panel by @averissimo in #1425
- followup after TealAppDriver$initialize changes by @gogonzo in #1429
- remove warning on concatention in
tm_g_pp_adverse_eventsby @m7pr in #1431 - restructure sections by @m7pr in #1432
- FIX #1433 by @m7pr in #1435
- Fixes plot settings that did not have an accordion wrapper by @averissimo in #1436
tm_t_summary*hide NAs whenuseNA = "no"by @llrs-roche in #1438- [skip vbump] upversion 0.12.0 by @donyunardi in #1449
New Contributors
- @Copilot made their first contribution in #1416
Full Changelog: v0.11.1...v0.12.0
v0.12.0-rc1
Commit to trigger the GHA fixed
v0.11.1
Enhancements
- Improved the layout and appearance of the app using
bslibcomponents. - Added argument
conf_typeto moduletm_g_kmto allow users to set a confidence interval type for median survival time estimation. - Added
denomargument intm_t_binary_outcomemodule. - Update
withrdependency version.
Bug fixes
- Fixed bug in
tm_t_eventsto return sorted table (#1393). - Fixed "Add to Report" failures in
tm_g_pp_adverse_events,tm_g_pp_therapy,tm_t_pp_basic_info,tm_t_pp_laboratoryandtm_t_pp_prior_medicationmodules (#1404).
Breaking changes
- Removed the
tableobject decoration intm_g_pp_adverse_events,tm_g_pp_therapy(#1404). - Deprecated the
decoratorsargument intm_t_pp_basic_info,tm_t_pp_laboratoryandtm_t_pp_prior_medication(#1404).
What's Changed
- Implement bslib and use Bootstrap 5 by @vedhav in #1359
- Add the
conf_typeargument totm_g_km()by @edelarua in #1361 - Adds
denomargument totm_t_binary_outcomemodule by @averissimo in #1366 - 1369 table should be the last object that is returned in
tm_t_eventsby @m7pr in #1372 - Final UI and bslib changes by @vedhav in #1370
- Replace
switchInputwithinput_switchby @vedhav in #1385 - Remove dev_suppress by @gogonzo in #1387
- Fix minimal versions for scheduled actions by @llrs-roche in #1389
- Adding new module using
summarize_glm_countby @llrs-roche in #1386 - chore: bump teal.logger dependency to 0.4.0 and remove from Remotes by @m7pr in #1395
- fix sorting in
tm_t_eventsby @kumamiao in #1394 - Use the the new add button for adding a card by @vedhav in #1400
- Final UI/UX changes by @vedhav in #1405
- Bump version of shiny to support
bsliband align withteal's minshinyversion by @vedhav in #1410 - Update modules' code for reproducibility by @llrs-roche in #1399
- Fixes failing "Add to Report" for modules that have
DTtable visualization by @averissimo in #1411 - Update lifecycle badges by @m7pr in #1412
- chore: bump teal.code dependency to 0.7.0 and remove from Remotes by @m7pr in #1413
- chore: bump teal.reporter dependency to 0.5.0 and remove from Remotes by @m7pr in #1414
- [skip vbump] upversion v0.11.0 by @donyunardi in #1415
New Contributors
Full Changelog: v0.10.0...v0.11.1
v0.10.0
Enhancements
- Added
teal.loggerfunctionality for logging changes in shiny inputs in all modules. - Introduced
ylimparameter fortm_g_kmmodule that controls width of y-axis. - Added functionality to
tm_t_events_patyearto split columns by multiple (nested) variables via thearm_varargument. - Added arguments
arm_var_labelstotemplate_summaryandshow_arm_var_labelstotm_t_summaryto allow user to display arm variable (arm_var) labels in table header. - Added argument
statsto modulestm_g_forest_rspandtm_g_forest_tteto allow users to specify statistics to include in the table. - Added argument
riskdiffto modulestm_g_forest_rspandtm_g_forest_tteto allow users to add a risk difference table column. - Added the
count_dthandcount_wdparameters totm_t_events_summaryto select/deselect the "Total number of deaths" and "Total number of patients withdrawn from study due to an AE" rows, respectively. These options correspond to the "Count deaths" and "Count withdrawals due to AE" checkboxes available when the module is run. - Added the
title_textargument totm_t_mult_eventsto allow for more customization of the module's dynamic title. - Introduced
transformatorsanddecoratorsargument to modules.
Bug fixes
- Fixed bug in creating modules with
delayed_dataandteal.transform::all_choices. - Fixed bug in
tm_g_forest_tteandtm_g_forest_rspto resolve delayed data loading variables.
Miscellaneous
- Removed
Show Warningsmodals from modules. - Clarified the documentation specifying whether multiple values can be selected in the
arm_varargument for each module. - Replaced use of the
rtables::add_colcounts()function with theshow_colcountsargument tobasic_table(). - Began deprecation cycle for the
show_labelsargument oftemplate_summarywhich has no effect on thetm_t_summarymodule. - Replaced instances of deprecated
strataargument totern::control_lineplot_vars()withgroup_var. - Added an assertion to
tm_t_events_summary()to check whether all datasets used have the same treatment variable levels.
What's Changed
- Workflow propagation by @walkowif in #1102
- 1175 fixing validation on
col_by_varvariable. by @kartikeyakirar in #1178 - 1149 introduce
ylimparameter fortm_g_kmmodule by @m7pr in #1177 - 1108
{shinytest2}feature branch by @m7pr in #1126 - 1176 remove
Show Warningsfrom modules by @m7pr in #1180 - 227 utilize
logger::log_shiny_input_changeby @m7pr in #1182 - truetype font support checking PR by @gmbecker in #1188
- Bumps
{rmarkdown}minimal version by @averissimo in #1186 - increase rtables dep version by @ayogasekaram in #1195
- testing for rtables higher level ns PR by @gmbecker in #1190
- 553 change level in
log_shiny_input_changesand exclude plot sizes in logging by @m7pr in #1191 - Update DESCRIPTION by @shajoezhu in #1196
- Fix documentation of
arm_varargument in modules by @edelarua in #1201 - Add functionality to
tm_t_events_patyearto split columns by multiple (nested) variables by @edelarua in #1203 - Replace use of
add_colcountswith theshow_colcountsargument by @edelarua in #1207 - Add option to
tm_t_summaryto includearm_varlabels in table header by @edelarua in #1205 - Workflow propagations by @walkowif in #1208
- Add stats and risk difference parameters to forest plot modules by @edelarua in #1210
- Fix teal namespace for broken tests by @vedhav in #1213
- Add options to toggle the "Total deaths" and "Total withdrawals due to AE" rows in
tm_t_events_summaryby @edelarua in #1216 - Update DESCRIPTION by @pawelru in #1217
- Use
group_varargument tocontrol_lineplot_varsinstead of deprecatedstrataby @edelarua in #1223 - update readme by @pawelru in #1218
- fix: changed the separator in h_concat_expr by @kpagacz in #1226
- Workflow propagations by @walkowif in #1219
- Update DESCRIPTION tern to 0.9.6 by @shajoezhu in #1227
- reset factor level during validate by @donyunardi in #1229
- Update scheduled.yaml by @pawelru in #1220
- use of
roxy.shinyliveby @pawelru in #1230 - add rmarkdown to VignetteBuilder by @pawelru in #1237
- Adds
roxy.shinyliveto pre-commit configuration by @averissimo in #1238 teal.data::datanames()is deprecated in favor of dot-prefix andnames()by @averissimo in #1239- 1248 Fix shinytest2 tests by @m7pr in #1251
- Update
tm_t_summary_by()column variable text by @edelarua in #1247 - upversion teal.report, rtables, rtables.officer by @shajoezhu in #1250
- update
stratavar togroup_varby @ayogasekaram in #1246 - Bring back tests for
tm_g_pp_therapyby @vedhav in #1271 - fixes error in adverse events when
ASTDYis of difftime type by @averissimo in #1284 - Fix tmc integration test - Wait for shiny app idle after fit is clicked by @vedhav in #1296
- add setup-r-dependencies by @vedhav in #1297
- Fix documentation note about links on r-devel by @llrs-roche in #1299
- Stop R process if AppDriver fails in
test-examplesby @averissimo in #1303 - 🗃️ Decorators feature branch by @averissimo in #1252
- 1305 allow delayed data to pass in
cs_to_des_selectby @chlebowa in #1306 - upversion dep by @shajoezhu in #1308
- Fix logger by @gogonzo in #1312
- Show only datasets used by @llrs-roche in #1309
- Update DESCRIPTION by @shajoezhu in #1315
- update packages for the scheduled build by @m7pr in #1314
- 1441 Introduce transformators parameter in modules by @m7pr in #1313
- vbump teal.logger by @m7pr in #1319
- add Remotes to DESCRIPTION by @m7pr in #1321
- simplify builds dependencies of extra-deps by @m7pr in #1318
- Update teal.reporter version by @m7pr in #1322
- vbump teal.code by @m7pr in #1323
- vbump teal.data by @m7pr in #1326
- Make sure the code chunks does not break because of warnings by @vedhav in #1327
- vbump teal.widgets by @m7pr in #1328
- Duplicated decorators during an edge case of named and unnamed decorators by @m7pr in #1325
- Add
title_textargument totm_t_mult_events()to control dynamic title by @edelarua in #1334 - update tm_g_forest_tte...
v0.10.0-rc1
Remove platforms that cause dependency installation to get stuck.
v0.9.1 cran
Enhancements
- Updated
tm_g_forest_rspandtm_g_forest_tteto use refactored version ofg_forest. Plots are now displayed asggplotobjects instead ofgrobobjects. Added parametersfont_sizeandrel_width_forestto control font size and width of plot relative to table, respectively. - Updated
tm_t_summary_byto allowNULLinput toparamcdargument. - Updated
tm_g_kmto use refactored version ofg_km. Plots are now displayed asggplotobjects instead ofgrobobjects. Added parametersrel_height_plot,font_size,control_annot_surv_med, andcontrol_annot_coxphto control height of plot relative to table, font size, median survival time table size, and Cox-PH table size, respectively. - Added the
controlargument totm_t_binary_outcometo control settings for the analysis (methods, confidence intervals, and odds ratios) within the module.
Miscellaneous
- Replaced instances of deprecated
na_levelargument toternfunctions withna_str. - Replaced argument/list element name
stratainstead ofstratin allternfunction calls following the deprecation of this argument/name withintern. - Removed
formattersfrom dependencies and replaced the use of its functions relating to variable labels with functions fromteal.data.
What's Changed
- 1077 remove
formattersby @chlebowa in #1079 - Re-add
g_forestupdates by @edelarua in #925 - Allow
NULLparamcdvalue intm_t_summary_byby @edelarua in #1083 - Replace instances of deprecated
na_levelwithna_strby @edelarua in #1088 - Update use of deprecated
stratargument fromternby @edelarua in #1081 - Strict tests by @pawelru in #985
- disable total column if not in parallel by @pawelru in #1087
- Cleanup of
# nolintcomments by @averissimo in #1091 - Update snapshots to fix tests by @edelarua in #1093
- 52 standardise optional notation by @kartikeyakirar in #1094
- register teal.logger handlers; replace log_info with message by @pawelru in #1010
- 445 unify html tags by @kartikeyakirar in #1098
- Update
tm_g_kmafterg_kmrefactor by @edelarua in #1107 - Update DESCRIPTION by @shajoezhu in #1109
- Replace use of deprecated
control_summarize_varsby @edelarua in #1115 - Rename output IDE to prevent DOM conflicts by @averissimo in #1114
- run examples using shinytest2 by @pawelru in #983
- error=T, purl=F in expected errors in vignettes by @pawelru in #1117
- checking aligning to the latest versions by @shajoezhu in #1118
- remove stop() in test-examples.R by @pawelru in #1121
- Update DESCRIPTION by @shajoezhu in #1123
- Adds
TealAppDriverandskip_if_too_deepfor e2e testing by @averissimo in #1124 - Expose
controlargument intm_t_binary_outcomeby @edelarua in #1110 - Wave 1 -
tm_a_geeshinytests by @m7pr in #1127 - Revert "Wave 1 -
tm_a_geeshinytests (#1127)" by @vedhav in #1140 - [skip vbump] preping for cran release by @shajoezhu in #1147
Full Changelog: v0.9.0...v0.9.1
v0.9.0 cran
Breaking Changes
- Adapted all modules to use
teal_dataobjects. - Module arguments that previously accepted inputs from
teal.transform::choices_selected()orteal.transform::data_extract_spec()now only accept input fromteal.transform::choices_selected(). The affected modules are:tm_a_gee,tm_a_mmrm,tm_g_ci,tm_g_forest_rsp,tm_g_forest_tte,tm_g_ipp,tm_g_km,tm_g_lineplot,tm_g_pp_adverse_events,tm_g_pp_patient_timeline,tm_g_pp_therapy,tm_g_pp_vitals,tm_t_abnormality,tm_t_abnormality_by_worst_grade,tm_t_ancova,tm_t_binary_outcome,tm_t_coxreg,tm_t_events,tm_t_events_by_grade,tm_t_events_patyear,tm_t_events_summary,tm_t_exposure,tm_t_logistic,tm_t_mult_events,tm_t_pp_basic_info,tm_t_pp_laboratory,tm_t_pp_medical_history,tm_t_pp_prior_medication,tm_t_shift_by_arm,tm_t_shift_by_arm_by_worst,tm_t_shift_by_grade,tm_t_smq,tm_t_summary,tm_t_summary_by, andtm_t_tte
Enhancements
- Updated the documentation and vignettes to demonstrate method to pass
teal_dataobject toteal::init(). - Added parameter
sort_freq_coltotm_t_eventsto allow the user to select column to use when sorting by decreasing frequency. - Added parameter
incl_overall_sumtotm_t_eventsto allow the user to choose whether overall summary rows are included at the top of the table. - Updated the documentation and vignettes to demonstrate method to pass
teal_dataobject toteal::init(). - Added
default_total_labelandset_default_total_labelfunctions to get and set default total column label (total_label) for modules. - Implemented
tern::default_na_strandtern::set_default_na_strfunctions to get and set default missing value replacement string (na_level) for modules.
Bug fixes
- Fixed bug in
tm_g_lineplotforcing module to initialize with a table.
Miscellaneous
- Deprecated the
avalargument intm_t_pp_laboratoryandtm_g_pp_vitalsand replaced it with theaval_varargument. - Deprecated the
avaluargument intm_t_pp_laboratoryand replaced it with theavalu_varargument. - Deprecated the
base_varargument intm_g_ipp,tm_t_shift_by_arm, andtemplate_shift_by_arm_by_worstand replaced it with thebaseline_varargument. - Specified minimal version of package dependencies.
- Replaced usage of deprecated
summarize_varsfunction withanalyze_vars. - Reduced package dependencies (removed
tidyr,rlang,magrittrandstyler).
What's Changed
- Workflow propagation by @walkowif in #824
- Use token in spelling workflow by @walkowif in #825
- Refactor
tm_t_exposureto remove summary row by @edelarua in #826 - Patient Profile Modules only show relevant datanames by @averissimo in #828
- Solution for maintaining indent after pruning by @ayogasekaram in #791
- Fix bug in
tm_t_coxregwhen no covariates selected by @edelarua in #833 - Fix
tm_t_coxregerrors when applying filters by @edelarua in #831 - Display Patient ID in relevant templates, clean up data tables in reports by @edelarua in #834
- 198 Include user's card labels when generating the report by @m7pr in #835
- Add option to remove interval in
tm_g_lineplotby @edelarua in #840 - chasing deprecations by @chlebowa in #852
- Update docs to use the new
teal_datainstead ofTealDataby @kartikeyakirar in #853 - fix
tm_g_pp_vitalsby @gogonzo in #896 - Update
ternversion by @m7pr in #901 - bump
teal.reporterdep version by @chlebowa in #903 - Fix bug forcing
tm_g_lineplotto initialize with a table by @edelarua in #899 - Add options to
tm_t_eventsfor sorting and overall rows by @edelarua in #851 - Remove unused
table_namesargument fromsurv_timepointby @edelarua in #905 tdatatoteal_databy @chlebowa in #855- fix resolve_delayed by @gogonzo in #909
- Workflow propagation by @walkowif in #908
- 906 update dependency versions by @chlebowa in #907
- 231 remove get_labels function by @kartikeyakirar in #914
- Update forest plots following refactor of
g_forestby @edelarua in #911 - Two arm vars by @gogonzo in #916
- Fix TMC to work with tern v0.9.3 by @edelarua in #922
- 430 use
expect_no_errorin tests instead ofexpect_error(, NA)by @m7pr in #936 - 919 update vignettes@main by @ayogasekaram in #927
- Add
default_total_labelfunction by @edelarua in #942 - 918 update teal.modules.clinical.R with
#' @keywords internal "_PACKAGE"by @m7pr in #982 - TMC bug fixes by @gogonzo in #926
- Replace
avalparameter withaval_varby @edelarua in #939 - Replace
avaluparameter withavalu_varby @edelarua in #940 - Adds min package version by @averissimo in #797
- Replace
base_varparameter withbaseline_varby @edelarua in #941 - Implement
default_na_strby @edelarua in #984 - Replace
summarize_varswithanalyze_varsby @edelarua in #987 - Clean up overall argument documentation by @edelarua in #989
- update deps of roxygenize hook by @pawelru in #990
- Minor improvements to README/vignettes by @edelarua in #993
- Clean up documentation for
tm_t_shift_by_arm_by_worstby @edelarua in #997 - Clean up documentation for
tm_t_shift_by_gradeby @edelarua in #998 - Update DESCRIPTION teal.data (>= 0.4.0) by @shajoezhu in #1008
- Consolidate argument_convention file by @edelarua in #1006
- 618 reduce dependencies of the package by @m7pr in #981
- Clean up documentation for
tm_t_binary_outcomeby @edelarua in #994 - Clean up documentation for
tm_t_summary_byby @edelarua in #1003 - Clean up documentation for
tm_t_summaryby @edelarua in #1004 - Clean up documentation for
tm_t_pp_basic_infoby @edelarua in #1024 - Clean up documentation for
tm_g_pp_adverse_eventsby @edelarua in #1026 - Clean up documentation for
tm_t_pp_prior_medicationby @edelarua in #1023 - Clean up documentation for
tm_t_pp_medical_historyby @edelarua in #1022 - Clean up documentation for
tm_g_forest_rspby @edelarua in #1020 - Clean up documentation for
tm_g_pp_therapyby @edelarua in #1025 - Clean up documentation for
tm_t_events_summaryby @edelarua in #1015 - Clean up documentation for
tm_t_mult_eventsby @edelarua in #1019 - Clean up documentation for
tm_t_tteby @edelarua in https://github.com/insightsengineering/teal.mod...
v0.8.16
Enhancements
- Added more informative error message when grade mapping error occurs in
tm_t_abnormality_by_worst_grade. - Fixed label indentation in
tm_t_abnormality_by_worst_grade. - Added
total_labelargument to enable customization of the "All Patients" column/row label in the following modules:tm_a_mmrm,tm_t_abnormality,tm_t_abnormality_by_worst_grade,tm_t_binary_outcome,tm_t_events,tm_t_events_by_grade,tm_t_events_patyear,tm_t_events_summary,tm_t_exposure,tm_t_mult_events,tm_t_shift_by_arm,tm_t_shift_by_arm_worst,tm_t_shift_by_grade,tm_t_smq,tm_t_summary,tm_t_summary_by, andtm_t_tte. - Increased default width of
tm_g_forest_tteplot to prevent overlapping text. - Improve default annotation table sizing in
tm_g_km.
Miscellaneous
- Updated
control_incidence_rateparameter names intm_t_events_patyearfromtime_unit_inputandtime_unit_outputtoinput_time_unitandnum_pt_year, respectively, after parameter names were changed intern.
What's Changed
- Update
scdadata by @edelarua in #658 - Use scda.2022 by @edelarua in #663
- Teal refactor by @pawelru in #598
- Enable checks for
workflow_dispatchevent by @walkowif in #673 - consistent reactives naming by @gogonzo in #671
- Fix barchart behaviour by @nikolas-burkoff in #683
- Update staged_dependencies.yaml, adding tern.gee by @shajoezhu in #684
- 423 Add interaction to
tm_t_ancovaby @edelarua in #674 - Update line to produce output. by @ayogasekaram in #692
- add gee prototype module with example by @danielinteractive in #664
- 696 Add table titles to
tm_a_geereport cards by @edelarua in #697 - Fix coxreg by @nikolas-burkoff in #700
- Badges and contribution guidelines by @insights-engineering-bot in #702
- tmg_g_pp_vitals: remove param by @mhallal1 in #713
- tmc shinyvalidate by @nikolas-burkoff in #699
- Updates tm_a_mmrm for new tern.mmrm/mmrm packages by @danielinteractive in #714
- remv adsl_key, use USUBJID by default by @shajoezhu in #718
- Check as-cran + default landing page by @arkadiuszbeer in #719
- fix faceting in
tm_g_kmby @chlebowa in #720 - Update
rtablesstaged dep by @edelarua in #728 - Create minimal test data for examples and initialize the substitution by @Melkiades in #721
- Add TMC example data by @edelarua in #731
- Remove remaining
scdausage, update to testthat v3.0 by @edelarua in #732 - Consistent lowercase dataset names in examples by @edelarua in #736
- Remove
scdaandscda.2022from staged deps by @edelarua in #734 - adding two mo correlation struct, close #716 by @shajoezhu in #737
- Clean up example data modification by @edelarua in #739
- add teal.gallery to readme by @pawelru in #740
- Fix
validate_standard_inputsexample by @edelarua in #743 - fix barchart by @nikolas-burkoff in #744
- fix svg by @Melkiades in #747
- Add
lubridatefor ... date and time by @Melkiades in #749 - Update AVALC distribution in
tmc_ex_adrsby @edelarua in #751 - Updating GEE example with interaction term. by @ayogasekaram in #754
- 724 improve plot by @chlebowa in #753
- Workflow updates by @walkowif in #752
- Add label option for filtering/selection fields by @edelarua in #759
- Update
tm_t_coxregby @edelarua in #756 - Fixing
tm_g_lineplotfor droplevels strata and screening character by @Melkiades in #763 - Update token name by @walkowif in #765
- Update
tm_t_exposureto useanalyze_patients_exposure_in_colsby @edelarua in #767 - Fix R CMD Check note by @edelarua in #769
- Remove mentions of STREAM from documentation by @edelarua in #772
- Fix
numeric_statsbug intm_t_summaryandtm_t_summary_byby @edelarua in #771 - Prepare 0.8.15 release [skip vbump] by @edelarua in #774
- Update workflows by @walkowif in #775
- Improve
tm_t_abnormality_by_worst_gradeerror message by @edelarua in #778 - Update
control_incidence_rateparam names intm_t_events_patyearby @edelarua in #785 - Add option to customize the "All Patients" column label by @edelarua in #783
- reduce the amount of spelling issues / WORDLIST by @m7pr in #782
- Workflow propagations by @walkowif in #786
- Fix snapshot tests by @edelarua in #789
- Move TealReportCard to teal by @gogonzo in #793
- empty by @gogonzo in #796
- update by @gogonzo in #798
- propagate argument name change in teal::module by @chlebowa in #801
- Fix
tm_a_mmrmreport card text by @edelarua in #809 - Increase default width of
tm_g_forest_tteplot by @edelarua in #811 - 804 deprecation notes in
ggplot2by @chlebowa in #810 - 799 qenv prints plots to the device when running shiny app by @kartikeyakirar in #813
- Can't add reporter in patients timeline module by @gogonzo in #808
- Improve default annotation table sizing in
tm_g_kmby @edelarua in #812 - 803 page length by @chlebowa in #814
- update snapshot by @gogonzo in #818
- update by @gogonzo in #820
New Contributors
- @walkowif made their first contribution in #673
- @m7pr made their first contribution in #782
- @kartikeyakirar made their first contribution in #813
Full Changelog: v0.8.14...v0.8.16
v0.8.15
Breaking changes
- Replaced
chunkswith simplerqenvclass. - Replaced
datasetsargument containingFilteredDatawith the new argumentsdata(tdataobject) andfilter_panel_api(FilterPanelAPI).
Enhancements
- Replaced
synthetic_cdisc_datawith refactoredsynthetic_cdisc_datasetfunction to speed up dataset loading in tests/examples. - Added new GEE module
tm_a_gee. - Added interface for selecting an interaction term to
tm_t_ancova. - Updated encoding input checks to use
shinyvalidate::InputValidatorfor better UI experience. Previously usedshiny::validate. - Added option to
tm_a_mmrmto allow for Kenward-Roger adjustments of standard errors and p-values. - Added option to choose facet scale options in
tm_g_barchart_simple. - Added
labelparameter tocs_to_select_spec/cs_to_des_selectandcs_to_filter_spec/cs_to_des_filterto allow the user to customize the label printed over the selection field. - Updated
tm_t_coxregmodule after refactoringsummarize_coxreginternto fix indentation. - Updated
tm_t_exposuremodule to use new functionanalyze_patients_exposure_in_colsto fix table structure.
Bug fixes
- Fixed bug causing overlapping bars in
tm_g_barchart_simple. - Fixed bug for figures in
svgformat. - Fixed bug in
tm_t_summaryandtm_t_summary_bypreventing users from specifying thenumeric_statsargument.
Miscellaneous
- Updated package Suggests to use
scda.2022rather thanscda.2021. - Removed unused argument
paramfromtm_g_pp_vitals. - Removed optimizer choice from
tm_a_mmrmsince we can always use the automatically determined optimizer. - Created datasets to use in examples/tests for
adsl,adae,adaette,adcm,adeg,adex,adlb,admh,adqs,adrs,adtte, andadvs. These datasets are stored in the data folder and accessible via thetmc_ex_*prefix. - Updated all examples and tests to use datasets from the
teal.modules.clinicalpackage instead ofscdadatasets. - Updated tests to use
testthat3rd edition and replaced all applicable tests with snapshot testing. - Implemented the
lubridatepackage for date variables in internal data. - Changed default value of
plot_widthintm_g_forest_rspto prevent clutter.
What's Changed
- Update
scdadata by @edelarua in #658 - Use scda.2022 by @edelarua in #663
- Teal refactor by @pawelru in #598
- Enable checks for
workflow_dispatchevent by @walkowif in #673 - consistent reactives naming by @gogonzo in #671
- Fix barchart behaviour by @nikolas-burkoff in #683
- Update staged_dependencies.yaml, adding tern.gee by @shajoezhu in #684
- 423 Add interaction to
tm_t_ancovaby @edelarua in #674 - Update line to produce output. by @ayogasekaram in #692
- add gee prototype module with example by @danielinteractive in #664
- 696 Add table titles to
tm_a_geereport cards by @edelarua in #697 - Fix coxreg by @nikolas-burkoff in #700
- Badges and contribution guidelines by @insights-engineering-bot in #702
- tmg_g_pp_vitals: remove param by @mhallal1 in #713
- tmc shinyvalidate by @nikolas-burkoff in #699
- Updates tm_a_mmrm for new tern.mmrm/mmrm packages by @danielinteractive in #714
- remv adsl_key, use USUBJID by default by @shajoezhu in #718
- Check as-cran + default landing page by @arkadiuszbeer in #719
- fix faceting in
tm_g_kmby @chlebowa in #720 - Update
rtablesstaged dep by @edelarua in #728 - Create minimal test data for examples and initialize the substitution by @Melkiades in #721
- Add TMC example data by @edelarua in #731
- Remove remaining
scdausage, update to testthat v3.0 by @edelarua in #732 - Consistent lowercase dataset names in examples by @edelarua in #736
- Remove
scdaandscda.2022from staged deps by @edelarua in #734 - adding two mo correlation struct, close #716 by @shajoezhu in #737
- Clean up example data modification by @edelarua in #739
- add teal.gallery to readme by @pawelru in #740
- Fix
validate_standard_inputsexample by @edelarua in #743 - fix barchart by @nikolas-burkoff in #744
- fix svg by @Melkiades in #747
- Add
lubridatefor ... date and time by @Melkiades in #749 - Update AVALC distribution in
tmc_ex_adrsby @edelarua in #751 - Updating GEE example with interaction term. by @ayogasekaram in #754
- 724 improve plot by @chlebowa in #753
- Workflow updates by @walkowif in #752
- Add label option for filtering/selection fields by @edelarua in #759
- Update
tm_t_coxregby @edelarua in #756 - Fixing
tm_g_lineplotfor droplevels strata and screening character by @Melkiades in #763 - Update token name by @walkowif in #765
- Update
tm_t_exposureto useanalyze_patients_exposure_in_colsby @edelarua in #767 - Fix R CMD Check note by @edelarua in #769
- Remove mentions of STREAM from documentation by @edelarua in #772
- Fix
numeric_statsbug intm_t_summaryandtm_t_summary_byby @edelarua in #771
New Contributors
Full Changelog: v0.8.14...v0.8.15
v0.8.14
Enhancements
- Updated all synthetic data for tests to version
rcd_2022_02_28. - Reverted missing data checkbox in
tm_t_summary(encoding and filtering should be separate). - Implemented a new widget that allows dragging and dropping to select comparison groups.
- Added the
teal.reporterfunctionality to all modules. - Enhanced the
tm_t_pp_medical_historymodule to use thetable_with_settingsmodule and return anrtablesobject. - Implemented
nestcolorin examples, refactoredtm_g_barchart_simpleto allow use ofnestcolor. - Added more descriptive title/labels and visit name subtitle to
tm_g_ci. - Updated
tm_a_mmrmcolumn name when deselecting treatment from "all obs" to "All Patients", added subtitles and footnotes. - Added a title and parameter category subtitle to
tm_t_exposure, cleaned up labels. - Added titles and worse flag variable subtitles to
tm_t_shift_by_gradeandtm_t_shift_by_arm_by_worst. - Added a footnote to
tm_t_events_patyearwith CI method. - Added a subtitle and footnotes to
tm_g_km. - Added Stratified Analysis CI method option panel to
tm_t_binary_outcome. - Added validation for covariate/visit conflicts to
tm_a_mmrm. - Remove unnecessary brackets from header in
tm_t_exposure. - Hid footnotes in
tm_g_kmandtm_t_ttewhen "Compare Treatments" is off.
Bug fixes
- Fixed bug in
tm_g_barchart_simplewhich prevented graph from showing. - Fixed broken example for
tm_t_abnormality_by_worst_grade. - Fixed bug in
tm_a_mmrmwhich prevented table headers from displaying. - Fixed bug in
tm_g_forest_rspwhen deselecting endpoint. - Fixed bug in
tm_t_binary_outcomethat crashed the app when deselecting allparamcd. - Fixed
teal.reportercard names fortm_t_smq. - Fixed bug in
tm_t_shift_by_arm_by_worstby adding validations for choosing different endpoint values. - Fixed bug in
tm_t_coxregpreventing footnotes from displaying for univariate models.
Miscellaneous
- Added
nestcolordependency and replaced deprecated functiontern::color_palettewithnestcolor::color_palette.
What's Changed
- fix news by @gogonzo in #507
- Contribution guide updates by @insights-engineering-bot in #509
- implement draggable widget for all modules by @denisovan31415 in #485
- 510 revert missing checkbox tm t summary@main by @ayogasekaram in #513
- 514 empty string summarize logistic@main by @Melkiades in #515
- increase indent teal outputs by @ayogasekaram in #516
- docs: replaced github links with the pkgdown links by @kpagacz in #517
- fix barchart by @nikolas-burkoff in #521
- Fix barchart by @nikolas-burkoff in #524
- init reporter tmc by @Polkas in #518
- fix tm_g_barchart by @gogonzo in #529
- DESC and README by @denisovan31415 in #531
- 527 Update to use
nestcolor::color_paletteby @edelarua in #530 - Update Rbuildignore and add auto-updates by @insights-engineering-bot in #532
- slight refactoring for
tern.mmrmby @danielinteractive in #523 - teal.reporter all modules by @Polkas in #528
- 511 Implement
nestcolorin TMC by @edelarua in #534 - Update pre-commit config to detect
_pkgdown.y[a]mlby @insights-engineering-bot in #535 - remove _FILTERED by @gogonzo in #536
- reporter cleaning by @mhallal1 in #537
- Update documentation workflow by @insights-engineering-bot in #539
- rm inline - css tmc by @Polkas in #538
- Updated all test files in tests/testthat/ ("2022_02_28") by @ayogasekaram in #549
- 564 Add more descriptive title/labels to
tm_g_ciby @edelarua in #567 - 578 Fix broken example for
tm_t_abnormality_by_worst_gradeby @edelarua in #579 - Update check.yaml by @arkadiuszbeer in #570
- Update tm_t_binary_outcome.R by @Polkas in #582
- 563 Fix
tm_a_mmrmTable Headers by @edelarua in #583 - 588 Add "Stratified by" Subtitles by @edelarua in #594
- 11 Update
tm_a_mmrmcolumn name by @edelarua in #601 - 590 Fix typo in
tm_t_exposurefootnote by @edelarua in #606 - 592 Add visit subtitle to
tm_g_ciby @edelarua in #605 - 593 Fix
tm_t_smqcard name by @edelarua in #604 - 597 Add subtitles and footnotes to
tm_a_mmrmby @edelarua in #610 - 591 Add
tm_t_exposuretitle/subtitle by @edelarua in #607 - 595 Add titles/subtitles for worst flag variable by @edelarua in #608
- 561 Add CI Method footnote to
tm_t_events_patyearby @edelarua in #616 - Turn off auto-styling by @cicdguy in #617
- add footnote and update test files by @6iris6 in #615
- fix package --as-cran by @donyunardi in #602
- 614 Add subtitle/footnotes to
tm_g_kmby @edelarua in #620 - 586 Add Stratified Newcombe to Stratified Analysis CI Method Options for
tm_t_binary_oucomeby @edelarua in #624 - Fix
tm_t_tte,tm_t_coxregfootnotes by @edelarua in #626 - Removing if condition for by @arkadiuszbeer in #584
- 622 Clean up
teal.modules.clinicalNEWS by @edelarua in #627 - update title by @mhallal1 in #631
- Fix grammar in NEWS.md by @edelarua in #632
- 633 Fix
tm_t_abnormalityfooter by @edelarua in #646 - Add validation for
tm_a_mmrmcovariate/visit conflict by @edelarua in #649 - 637 remove unnecessary brackets@main by @JiaLiu0001 in #645
- update roxygen for SRC by @nikolas-burkoff in #651
- 525: parse cor_struct choices from tern.mmrm package by @danielinteractive in #647
- 652 Fix TMC footnotes by @edelarua in #654
- [skip vbump] Release for version 0.8.14 by @insights-engineering-bot in #657
New Contributors
- @ayogasekaram made their first contribution in #513
- @Melkiades made their first contribution in #515
- @danielinteractive made their first contribution in #523
- @donyunardi made their first contribution in #602
Full Changelog: v0.8.13...v0.8.14