-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
JoinKeys
related changes due to refactor (#486)
Related to [teal.data PR #184](insightsengineering/teal.data#184) Make changes to `teal.slice` because of the refactor to the `JoinKeys` class from R6 to S3. This diagram shows the R6 methods along with the replacement S3 methods/functions. <img width="1214" alt="Screenshot 2023-11-15 at 3 56 36 PM" src="https://github.com/insightsengineering/teal.slice/assets/49812166/e0a5843f-f54c-46c6-aaeb-fd0e178536a5"> --------- Signed-off-by: Vedha Viyash <[email protected]> Co-authored-by: André Veríssimo <[email protected]> Co-authored-by: kartikeya kirar <[email protected]>
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -252,6 +252,6 @@ app <- shinyApp( | |
} | ||
) | ||
if (interactive()) { | ||
runApp(app) | ||
shinyApp(app$ui, app$server) | ||
} | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,6 +115,6 @@ app <- shinyApp( | |
} | ||
) | ||
if (interactive()) { | ||
runApp(app) | ||
shinyApp(app$ui, app$server) | ||
} | ||
``` |