Last updated on 2026-02-10 23:52:44 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.5.1 | ERROR | ||||
| r-devel-linux-x86_64-debian-gcc | 0.5.1 | 10.59 | 178.27 | 188.86 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 0.5.1 | 27.00 | 348.87 | 375.87 | ERROR | |
| r-devel-linux-x86_64-fedora-gcc | 0.5.1 | 25.00 | 408.95 | 433.95 | ERROR | |
| r-devel-windows-x86_64 | 0.5.1 | 17.00 | 255.00 | 272.00 | ERROR | |
| r-patched-linux-x86_64 | 0.5.1 | 15.95 | 246.60 | 262.55 | ERROR | |
| r-release-linux-x86_64 | 0.5.1 | 12.11 | 247.75 | 259.86 | ERROR | |
| r-release-macos-arm64 | 0.5.1 | OK | ||||
| r-release-macos-x86_64 | 0.5.1 | 9.00 | 166.00 | 175.00 | OK | |
| r-release-windows-x86_64 | 0.5.1 | 17.00 | 256.00 | 273.00 | OK | |
| r-oldrel-macos-arm64 | 0.5.1 | NOTE | ||||
| r-oldrel-macos-x86_64 | 0.5.1 | 9.00 | 147.00 | 156.00 | NOTE | |
| r-oldrel-windows-x86_64 | 0.5.1 | 24.00 | 328.00 | 352.00 | ERROR |
Version: 0.5.1
Check: examples
Result: ERROR
Running examples in ‘survminer-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: surv_fit
> ### Title: Create Survival Curves
> ### Aliases: surv_fit
>
> ### ** Examples
>
>
> library("survival")
Attaching package: ‘survival’
The following object is masked from ‘package:survminer’:
myeloma
> library("magrittr")
>
> # Case 1: One formula and One data set
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> fit <- surv_fit(Surv(time, status) ~ sex,
+ data = colon)
> surv_pvalue(fit)
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
>
>
> # Case 2: List of formulas and One data set.
> # - Different formulas are applied to the same data set
> # - Returns a (named) list of survfit objects
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> # Create a named list of formulas
> formulas <- list(
+ sex = Surv(time, status) ~ sex,
+ rx = Surv(time, status) ~ rx
+ )
>
> # Fit survival curves for each formula
> fit <- surv_fit(formulas, data = colon)
> surv_pvalue(fit)
$`colon::sex`
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
$`colon::rx`
variable pval method pval.txt
1 rx 4.990735e-08 Log-rank p < 0.0001
>
> # Case 3: One formula and List of data sets
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> fit <- surv_fit(Surv(time, status) ~ sex,
+ data = list(colon, lung))
> surv_pvalue(fit)
$`colon::sex`
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
$`lung::sex`
variable pval method pval.txt
1 sex 0.001311165 Log-rank p = 0.0013
>
>
> # Case 4: List of formulas and List of data sets
> # - Each formula is applied to each of the data in the data list
> # - argument: match.fd = FALSE
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
>
> # Create two data sets
> set.seed(123)
> colon1 <- dplyr::sample_frac(colon, 1/2)
> set.seed(1234)
> colon2 <- dplyr::sample_frac(colon, 1/2)
>
> # Create a named list of formulas
> formula.list <- list(
+ sex = Surv(time, status) ~ sex,
+ adhere = Surv(time, status) ~ adhere,
+ rx = Surv(time, status) ~ rx
+ )
>
> # Fit survival curves
> fit <- surv_fit(formula.list, data = list(colon1, colon2),
+ match.fd = FALSE)
Error:
! `combine()` was deprecated in dplyr 1.0.0 and is now defunct.
ℹ Please use `vctrs::vec_c()` instead.
Backtrace:
▆
1. ├─survminer::surv_fit(...)
2. │ └─purrr::map(formula, .map_each, data) %>% dplyr::combine()
3. └─dplyr::combine(.)
4. └─lifecycle::deprecate_stop("1.0.0", "combine()", "vctrs::vec_c()")
5. └─lifecycle:::deprecate_stop0(msg)
6. └─rlang::cnd_signal(...)
Execution halted
Examples with CPU (user + system) or elapsed time > 5s
user system elapsed
ggsurvplot_group_by 7.495 0.035 10.223
ggsurvplot 6.745 0.048 7.822
ggsurvplot_add_all 5.125 0.024 6.026
ggsurvplot_facet 4.908 0.001 6.541
ggcoxdiagnostics 4.609 0.025 7.025
ggsurvevents 4.185 0.063 5.057
ggcoxfunctional 3.959 0.019 5.539
ggsurvplot_df 3.797 0.000 6.095
ggcoxzph 3.492 0.000 5.301
arrange_ggsurvplots 3.328 0.002 5.198
Flavor: r-devel-linux-x86_64-debian-clang
Version: 0.5.1
Check: examples
Result: ERROR
Running examples in ‘survminer-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: surv_fit
> ### Title: Create Survival Curves
> ### Aliases: surv_fit
>
> ### ** Examples
>
>
> library("survival")
Attaching package: ‘survival’
The following object is masked from ‘package:survminer’:
myeloma
> library("magrittr")
>
> # Case 1: One formula and One data set
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> fit <- surv_fit(Surv(time, status) ~ sex,
+ data = colon)
> surv_pvalue(fit)
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
>
>
> # Case 2: List of formulas and One data set.
> # - Different formulas are applied to the same data set
> # - Returns a (named) list of survfit objects
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> # Create a named list of formulas
> formulas <- list(
+ sex = Surv(time, status) ~ sex,
+ rx = Surv(time, status) ~ rx
+ )
>
> # Fit survival curves for each formula
> fit <- surv_fit(formulas, data = colon)
> surv_pvalue(fit)
$`colon::sex`
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
$`colon::rx`
variable pval method pval.txt
1 rx 4.990735e-08 Log-rank p < 0.0001
>
> # Case 3: One formula and List of data sets
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> fit <- surv_fit(Surv(time, status) ~ sex,
+ data = list(colon, lung))
> surv_pvalue(fit)
$`colon::sex`
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
$`lung::sex`
variable pval method pval.txt
1 sex 0.001311165 Log-rank p = 0.0013
>
>
> # Case 4: List of formulas and List of data sets
> # - Each formula is applied to each of the data in the data list
> # - argument: match.fd = FALSE
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
>
> # Create two data sets
> set.seed(123)
> colon1 <- dplyr::sample_frac(colon, 1/2)
> set.seed(1234)
> colon2 <- dplyr::sample_frac(colon, 1/2)
>
> # Create a named list of formulas
> formula.list <- list(
+ sex = Surv(time, status) ~ sex,
+ adhere = Surv(time, status) ~ adhere,
+ rx = Surv(time, status) ~ rx
+ )
>
> # Fit survival curves
> fit <- surv_fit(formula.list, data = list(colon1, colon2),
+ match.fd = FALSE)
Error:
! `combine()` was deprecated in dplyr 1.0.0 and is now defunct.
ℹ Please use `vctrs::vec_c()` instead.
Backtrace:
▆
1. ├─survminer::surv_fit(...)
2. │ └─purrr::map(formula, .map_each, data) %>% dplyr::combine()
3. └─dplyr::combine(.)
4. └─lifecycle::deprecate_stop("1.0.0", "combine()", "vctrs::vec_c()")
5. └─lifecycle:::deprecate_stop0(msg)
6. └─rlang::cnd_signal(...)
Execution halted
Examples with CPU (user + system) or elapsed time > 5s
user system elapsed
ggsurvplot_group_by 4.717 0 5.315
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.5.1
Check: examples
Result: ERROR
Running examples in ‘survminer-Ex.R’ failed
The error most likely occurred in:
> ### Name: surv_fit
> ### Title: Create Survival Curves
> ### Aliases: surv_fit
>
> ### ** Examples
>
>
> library("survival")
Attaching package: ‘survival’
The following object is masked from ‘package:survminer’:
myeloma
> library("magrittr")
>
> # Case 1: One formula and One data set
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> fit <- surv_fit(Surv(time, status) ~ sex,
+ data = colon)
> surv_pvalue(fit)
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
>
>
> # Case 2: List of formulas and One data set.
> # - Different formulas are applied to the same data set
> # - Returns a (named) list of survfit objects
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> # Create a named list of formulas
> formulas <- list(
+ sex = Surv(time, status) ~ sex,
+ rx = Surv(time, status) ~ rx
+ )
>
> # Fit survival curves for each formula
> fit <- surv_fit(formulas, data = colon)
> surv_pvalue(fit)
$`colon::sex`
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
$`colon::rx`
variable pval method pval.txt
1 rx 4.990735e-08 Log-rank p < 0.0001
>
> # Case 3: One formula and List of data sets
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> fit <- surv_fit(Surv(time, status) ~ sex,
+ data = list(colon, lung))
> surv_pvalue(fit)
$`colon::sex`
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
$`lung::sex`
variable pval method pval.txt
1 sex 0.001311165 Log-rank p = 0.0013
>
>
> # Case 4: List of formulas and List of data sets
> # - Each formula is applied to each of the data in the data list
> # - argument: match.fd = FALSE
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
>
> # Create two data sets
> set.seed(123)
> colon1 <- dplyr::sample_frac(colon, 1/2)
> set.seed(1234)
> colon2 <- dplyr::sample_frac(colon, 1/2)
>
> # Create a named list of formulas
> formula.list <- list(
+ sex = Surv(time, status) ~ sex,
+ adhere = Surv(time, status) ~ adhere,
+ rx = Surv(time, status) ~ rx
+ )
>
> # Fit survival curves
> fit <- surv_fit(formula.list, data = list(colon1, colon2),
+ match.fd = FALSE)
Error:
! `combine()` was deprecated in dplyr 1.0.0 and is now defunct.
ℹ Please use `vctrs::vec_c()` instead.
Backtrace:
▆
1. ├─survminer::surv_fit(...)
2. │ └─purrr::map(formula, .map_each, data) %>% dplyr::combine()
3. └─dplyr::combine(.)
4. └─lifecycle::deprecate_stop("1.0.0", "combine()", "vctrs::vec_c()")
5. └─lifecycle:::deprecate_stop0(msg)
6. └─rlang::cnd_signal(...)
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-oldrel-windows-x86_64
Version: 0.5.1
Check: examples
Result: ERROR
Running examples in ‘survminer-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: surv_fit
> ### Title: Create Survival Curves
> ### Aliases: surv_fit
>
> ### ** Examples
>
>
> library("survival")
Attaching package: ‘survival’
The following object is masked from ‘package:survminer’:
myeloma
> library("magrittr")
>
> # Case 1: One formula and One data set
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> fit <- surv_fit(Surv(time, status) ~ sex,
+ data = colon)
> surv_pvalue(fit)
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
>
>
> # Case 2: List of formulas and One data set.
> # - Different formulas are applied to the same data set
> # - Returns a (named) list of survfit objects
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> # Create a named list of formulas
> formulas <- list(
+ sex = Surv(time, status) ~ sex,
+ rx = Surv(time, status) ~ rx
+ )
>
> # Fit survival curves for each formula
> fit <- surv_fit(formulas, data = colon)
> surv_pvalue(fit)
$`colon::sex`
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
$`colon::rx`
variable pval method pval.txt
1 rx 4.990735e-08 Log-rank p < 0.0001
>
> # Case 3: One formula and List of data sets
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> fit <- surv_fit(Surv(time, status) ~ sex,
+ data = list(colon, lung))
> surv_pvalue(fit)
$`colon::sex`
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
$`lung::sex`
variable pval method pval.txt
1 sex 0.001311165 Log-rank p = 0.0013
>
>
> # Case 4: List of formulas and List of data sets
> # - Each formula is applied to each of the data in the data list
> # - argument: match.fd = FALSE
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
>
> # Create two data sets
> set.seed(123)
> colon1 <- dplyr::sample_frac(colon, 1/2)
> set.seed(1234)
> colon2 <- dplyr::sample_frac(colon, 1/2)
>
> # Create a named list of formulas
> formula.list <- list(
+ sex = Surv(time, status) ~ sex,
+ adhere = Surv(time, status) ~ adhere,
+ rx = Surv(time, status) ~ rx
+ )
>
> # Fit survival curves
> fit <- surv_fit(formula.list, data = list(colon1, colon2),
+ match.fd = FALSE)
Error:
! `combine()` was deprecated in dplyr 1.0.0 and is now defunct.
ℹ Please use `vctrs::vec_c()` instead.
Backtrace:
▆
1. ├─survminer::surv_fit(...)
2. │ └─purrr::map(formula, .map_each, data) %>% dplyr::combine()
3. └─dplyr::combine(.)
4. └─lifecycle::deprecate_stop("1.0.0", "combine()", "vctrs::vec_c()")
5. └─lifecycle:::deprecate_stop0(msg)
6. └─rlang::cnd_signal(...)
Execution halted
Examples with CPU (user + system) or elapsed time > 5s
user system elapsed
ggsurvplot_group_by 6.997 0.056 8.742
ggsurvplot 6.359 0.000 9.876
ggsurvplot_add_all 4.899 0.057 6.830
ggcoxdiagnostics 4.406 0.016 5.341
ggsurvplot_facet 4.416 0.000 5.543
ggsurvevents 4.213 0.040 5.123
ggsurvplot_df 3.630 0.004 5.469
ggcoxzph 3.570 0.035 5.034
Flavor: r-patched-linux-x86_64
Version: 0.5.1
Check: examples
Result: ERROR
Running examples in ‘survminer-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: surv_fit
> ### Title: Create Survival Curves
> ### Aliases: surv_fit
>
> ### ** Examples
>
>
> library("survival")
Attaching package: ‘survival’
The following object is masked from ‘package:survminer’:
myeloma
> library("magrittr")
>
> # Case 1: One formula and One data set
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> fit <- surv_fit(Surv(time, status) ~ sex,
+ data = colon)
> surv_pvalue(fit)
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
>
>
> # Case 2: List of formulas and One data set.
> # - Different formulas are applied to the same data set
> # - Returns a (named) list of survfit objects
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> # Create a named list of formulas
> formulas <- list(
+ sex = Surv(time, status) ~ sex,
+ rx = Surv(time, status) ~ rx
+ )
>
> # Fit survival curves for each formula
> fit <- surv_fit(formulas, data = colon)
> surv_pvalue(fit)
$`colon::sex`
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
$`colon::rx`
variable pval method pval.txt
1 rx 4.990735e-08 Log-rank p < 0.0001
>
> # Case 3: One formula and List of data sets
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
> fit <- surv_fit(Surv(time, status) ~ sex,
+ data = list(colon, lung))
> surv_pvalue(fit)
$`colon::sex`
variable pval method pval.txt
1 sex 0.6107936 Log-rank p = 0.61
$`lung::sex`
variable pval method pval.txt
1 sex 0.001311165 Log-rank p = 0.0013
>
>
> # Case 4: List of formulas and List of data sets
> # - Each formula is applied to each of the data in the data list
> # - argument: match.fd = FALSE
> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
>
> # Create two data sets
> set.seed(123)
> colon1 <- dplyr::sample_frac(colon, 1/2)
> set.seed(1234)
> colon2 <- dplyr::sample_frac(colon, 1/2)
>
> # Create a named list of formulas
> formula.list <- list(
+ sex = Surv(time, status) ~ sex,
+ adhere = Surv(time, status) ~ adhere,
+ rx = Surv(time, status) ~ rx
+ )
>
> # Fit survival curves
> fit <- surv_fit(formula.list, data = list(colon1, colon2),
+ match.fd = FALSE)
Error:
! `combine()` was deprecated in dplyr 1.0.0 and is now defunct.
ℹ Please use `vctrs::vec_c()` instead.
Backtrace:
▆
1. ├─survminer::surv_fit(...)
2. │ └─purrr::map(formula, .map_each, data) %>% dplyr::combine()
3. └─dplyr::combine(.)
4. └─lifecycle::deprecate_stop("1.0.0", "combine()", "vctrs::vec_c()")
5. └─lifecycle:::deprecate_stop0(msg)
6. └─rlang::cnd_signal(...)
Execution halted
Examples with CPU (user + system) or elapsed time > 5s
user system elapsed
ggsurvplot_group_by 6.936 0.042 8.692
ggsurvplot 6.532 0.075 8.785
ggsurvplot_add_all 5.002 0.032 8.176
ggsurvplot_facet 4.791 0.000 6.669
ggcoxdiagnostics 4.373 0.043 5.743
ggsurvevents 4.095 0.020 6.271
ggcoxfunctional 3.897 0.027 5.673
ggsurvplot_df 3.727 0.001 6.511
ggsurvtheme 3.482 0.023 5.043
Flavor: r-release-linux-x86_64
Version: 0.5.1
Check: installed package size
Result: NOTE
installed size is 6.0Mb
sub-directories of 1Mb or more:
doc 5.5Mb
Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.