Skip to content

Commit

Permalink
Removing notes during installation (#111)
Browse files Browse the repository at this point in the history
* gtsummary v2.0 preparation

* Update R-CMD-check.yaml

* Update DESCRIPTION

* doc update

* Update DESCRIPTION

* Update DESCRIPTION

* Update NEWS.md

* Adding new functions to _pkgdown.yml.

* updates

* updates

* Update R-CMD-check.yaml

* base R pipe

---------

Co-authored-by: Teng Fei <[email protected]>
  • Loading branch information
ddsjoberg and tengfei-emory authored Aug 3, 2024
1 parent 2ba26f1 commit 890bfc6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}
# - {os: ubuntu-latest, r: 'oldrel-2'}
# - {os: ubuntu-latest, r: 'oldrel-3'}
# - {os: ubuntu-latest, r: 'oldrel-4'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion R/broom_methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ first_cuminc_tidy <- function(x, conf.level) {
df_se <-
x$cmprsk %>%
cmprsk::timepoints(times = times) %>%
purrr::pluck("var") %>%
purrr::pluck("var") |>
sqrt() %>%
cuminc_matrix_to_df(name = "std.error", times = times)

Expand Down
2 changes: 1 addition & 1 deletion R/print.R
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ print.tidycuminc <- function(x, ...) {
cli::cli_li("Tests")
df_glance <- glance(x)

nrow(x$cmprsk$Tests) %>%
nrow(x$cmprsk$Tests) |>
seq_len() %>%
purrr::map(
function(i) {
Expand Down

0 comments on commit 890bfc6

Please sign in to comment.