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

Variables not match #39

Open
Frankxwx opened this issue Jul 26, 2024 · 1 comment
Open

Variables not match #39

Frankxwx opened this issue Jul 26, 2024 · 1 comment

Comments

@Frankxwx
Copy link

Frankxwx commented Jul 26, 2024

Thank you for your excellent work! I found that the subgroup variables of the resulting table would not match the results.
For example:

library(survival)
library(dplyr)
lung %>%
mutate(
status = as.integer(status == 1),
sex = factor(sex),
kk = factor(as.integer(pat.karno >= 70)),
kk1 = factor(as.integer(pat.karno >= 60))
) -> lung
Coxlung <- TableSubgroupMultiCox(Surv(time, status) ~ sex,
var_subgroups = c("kk", "kk1"),
data = lung, time_eventrate = 100, line = TRUE
)

Coxlung
image

But in reality, the result of the "0" in kk is actually the result of the "1".

Use table(lung$kk , useNA = 'ifany') to verify the results:

table(lung$kk , useNA = 'ifany')
0 1
38 187 3

The results also match confusingly when the subgroup variables are three or even four.
Thank you for debugging it.

@jinseob2kim
Copy link
Owner

Sorry, Some error in development version. Please reinstall via remotes::install_github(“jinseob2kim/jstable”)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants