-
-
Notifications
You must be signed in to change notification settings - Fork 42
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
Refactor #992
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
Closes #904 Added `as_tdata` function to convert the data object received by modules from `teal_data` to `tdata` class. Modified `srv_nested_tabs.teal_module` now returns a `teal_data`. To make a module handle a `teal_data` object without (much) modification, the incoming `data` argument should be downgraded to the old class. ``` data <- as_tdata(data) ``` Also modified `example_module` to handle `teal_data` objects. --------- Co-authored-by: go_gonzo <dawid.kaledkowski@gmail.com> Co-authored-by: Dony Unardi <donyunardi@gmail.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
adapted to `teal_data` class
cosmetic changes
adapted to `teal_data` class
Code Coverage Summary
Diff against main
Results for commit: 58282cb Minimum allowed coverage is ♻️ This comment has been updated with latest results |
Modified `example_module` to remove `data` argument from UI function. Data set selection is moved to a `renderUI` element on the server side.
- hard deprecated data in the ui - soft deprecated datasets in the server
* adapted to `teal_data` class * mentioned and linked `teal_data_module` * replaced outdated image * added color legend to image --------- Signed-off-by: Vedha Viyash <49812166+vedhav@users.noreply.github.com> Co-authored-by: Vedha Viyash <49812166+vedhav@users.noreply.github.com>
* adapted to `teal_data` class * removed vignettes `including-general-data-in-teal`, `including-adam-data-in-teal`, `including-mae-data-in-teal`, and `preprocessing-data` * added vignette `data-in-teal`
* adapted to `teal_data` class * generalized example module * dropped mentions of `teal.transform`
adapted example modules to follow `example_module`
Unit Test Performance DifferenceAdditional test case details
Results for commit 8c48ed7 ♻️ This comment has been updated with latest results. |
Signed-off-by: Aleksander Chlebowski <114988527+chlebowa@users.noreply.github.com>
chlebowa
reviewed
Nov 30, 2023
chlebowa
reviewed
Nov 30, 2023
Signed-off-by: Aleksander Chlebowski <114988527+chlebowa@users.noreply.github.com>
this fixes insightsengineering/teal.gallery#113 --------- Signed-off-by: kartikeya kirar <kirar.kartikeya1@gmail.com> Co-authored-by: Aleksander Chlebowski <114988527+chlebowa@users.noreply.github.com>
vedhav
reviewed
Dec 1, 2023
Co-authored-by: Vedha Viyash <49812166+vedhav@users.noreply.github.com> Signed-off-by: André Veríssimo <211358+averissimo@users.noreply.github.com>
Changes `tdata` to `teal_data` in a few places we missed.
kartikeyakirar
approved these changes
Dec 8, 2023
- teal.transform bump not needed
vedhav
reviewed
Dec 8, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
part of #937