We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
RECIST Calculators:
Other resources:
Off-topic: Compute the Best Overall Response: https://www.bioinfo-scrounger.com/archives/bor_recist/. See also https://github.com/kaigu1990/stabiot
rc %>% mutate(sum_bl = unify(RCTLSUM[CRFINSNO==1]), .by = SUBJID) %>% mutate(RCTLRESP2 = case_when( RCTLSUM/sum_bl == 0 ~ "1-CR", RCTLSUM/sum_bl < 0.7 ~ "2-PR", RCTLSUM/sum_bl > 1.2 ~ "4-PD", RCTLSUM/sum_bl < 2 ~ "3-SD", )) %>% distinct(SUBJID, RCDT, RCTLRESP, RCTLRESP2) %>% crosstable(RCTLRESP~RCTLRESP2, label=FALSE) %>% af rc$RCTLSITE %>% table #for lymph nodes
The text was updated successfully, but these errors were encountered:
Migrated to grstat issue 25
Sorry, something went wrong.
No branches or pull requests
RECIST 1.1 Documentation
RECIST Calculators:
Other resources:
Off-topic: Compute the Best Overall Response: https://www.bioinfo-scrounger.com/archives/bor_recist/. See also https://github.com/kaigu1990/stabiot
Code:
The text was updated successfully, but these errors were encountered: