I want to change the color and pattern of each line for the "death from cancer" (solid and red) and "death other causes" (solid and blue) competing outcomes for the entire cohort (not stratified by trt or any other group) on the plot below, but I can't change them.
library(ggplot2)
library(tidycmprsk)
library(ggsurvfit)
custom_colors <- c("yellow", "blue") # Add more colors as needed
cuminc(Surv(ttdeath, death_cr) ~ 1, trial) %>%
ggcuminc(outcome = c("death from cancer","death other causes")) +
add_confidence_interval() +
add_risktable(size = 4, theme = theme_risktable_default(axis.text.y.size = 12, plot.title.size = 12)) +
theme(axis.title = element_text(size = 20), axis.text = element_text(size = 15), legend.text = element_text(size = 15)) +
scale_color_manual(values = custom_colors) # Set custom line colors
This code does not do what I expect to do.
Replace
1
with the group (here:trt
) Then your code should work as expected. I changed yellow with red: