-
Notifications
You must be signed in to change notification settings - Fork 53
Fix subsetting by integer() and 0
#1018
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
Conversation
Unit Tests Summary 1 files 28 suites 1m 45s ⏱️ Results for commit 9b6bdff. ♻️ This comment has been updated with latest results. |
Unit Test Performance Difference
Additional test case details
Results for commit e8f17c4 ♻️ This comment has been updated with latest results. |
Code Coverage SummaryDiff against mainResults for commit: e20fcda Minimum allowed coverage is ♻️ This comment has been updated with latest results |
shajoezhu
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
> lyt <- basic_table(title = "hiya I'm a title!") %>%
+ split_rows_by("ARM") %>%
+ analyze("AGE")
>
> tbl <- build_table(lyt, ex_adsl)
> main_title(tbl[1, , keep_titles = TRUE])
[1] "hiya I'm a title!"
> main_title(tbl[integer(), , keep_titles = TRUE])
[1] "hiya I'm a title!"
lgtm! Thanks @Melkiades
Fixes #870