Skip to content
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

Use teal.data::get_code instead of teal.data:::get_code_dependency #1090

Merged
merged 31 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e92fa63
use get_code instead of get_code_dependency
m7pr Feb 6, 2024
5d61488
[skip actions] Roxygen Man Pages Auto Update
dependabot-preview[bot] Feb 6, 2024
8d9c030
Empty-Commit
m7pr Feb 6, 2024
07a5fbe
Merge branch 'main' into get_code@main
m7pr Feb 14, 2024
dd17017
Merge branch 'main' into get_code@main
m7pr Feb 22, 2024
9bed187
use get_code with datanames directly in get_datasets_code
m7pr Feb 26, 2024
8ad89b0
update indention
Feb 26, 2024
1260b2a
add function modules_datasets
Feb 27, 2024
87894de
[skip style] [skip vbump] Restyle files
github-actions[bot] Feb 27, 2024
280b93f
[skip roxygen] [skip vbump] Roxygen Man Pages Auto Update
dependabot-preview[bot] Feb 27, 2024
967693d
move singleton creation to default argument value
Feb 27, 2024
241eef0
Merge branch 'get_code@main' of github.com:insightsengineering/teal i…
Feb 27, 2024
b8407d8
signelton fix
Feb 27, 2024
4e4dbd7
using `modules_datasets()` (#1115)
m7pr Feb 27, 2024
596f79f
Merge branch 'main' into get_code@main
m7pr Feb 27, 2024
1483698
remove modules_datasets.R
m7pr Feb 28, 2024
40a1a05
add modules_datasets to utils.R
m7pr Feb 28, 2024
32f1c97
add a test for modules_datasets
m7pr Feb 28, 2024
16b1f79
[skip style] [skip vbump] Restyle files
github-actions[bot] Feb 28, 2024
a259c1c
Empty-Commit
m7pr Feb 28, 2024
8215e77
Update R/utils.R
m7pr Feb 28, 2024
7e272ba
fix linter
Feb 28, 2024
4845202
[skip style] [skip vbump] Restyle files
github-actions[bot] Feb 28, 2024
3519033
Empty-Commit
m7pr Feb 28, 2024
1f80942
add nolint
m7pr Feb 29, 2024
40d6054
Update R/utils.R
m7pr Feb 29, 2024
74f4362
add nolint explanation
m7pr Feb 29, 2024
d762873
Update R/utils.R
m7pr Feb 29, 2024
892ac07
use expect_identical instead of expect_equal
m7pr Feb 29, 2024
20dea99
Merge branch 'get_code@main' of https://github.com/insightsengineerin…
m7pr Feb 29, 2024
b23e1db
[skip roxygen] [skip vbump] Roxygen Man Pages Auto Update
dependabot-preview[bot] Feb 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion R/get_rcode_utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ get_rcode_str_install <- function() {
get_datasets_code <- function(datanames, datasets, hashes) {
# preprocessing code
str_prepro <-
teal.data:::get_code_dependency(attr(datasets, "preprocessing_code"), names = datanames, check_names = FALSE)
teal.data::get_code(attr(datasets, "preprocessing_code"), datanames = datanames, check_names = FALSE)
if (length(str_prepro) == 0) {
str_prepro <- "message('Preprocessing is empty')"
} else {
Expand Down
4 changes: 2 additions & 2 deletions man/teal_slices.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading