kassambara / survminer

Survival Analysis and Visualization
https://rpkgs.datanovia.com/survminer/
501 stars 162 forks source link

Curve thickness - ggadjustedcurves #267

Closed MaximilianTscharre closed 6 years ago

MaximilianTscharre commented 6 years ago

I'm relatively new to R and sometimes still stumble over problems, which I just cannot solve.

Until recently I used survminer 0.3.0 and had no problem adapting the curve thickness

Example data from the internet: ggcoxadjustedcurves(res.cox, data = lung, variable = lung[, "sex"], # Variable of interest legend.title = "Sex", # Change legend title palette = "npg", # nature publishing group color palettes curv.size = 2 # Change line size )

After updating to the latest version (survminer 0.4.1), is there an easy way to change the thickness of my curves?

ggadjustedcurves(versuch,
data = df,
method = "average",
variable = "trop",
palette = "npg",
title= "Adjusted survival",
font.title=c(16, "bold"),
legend.title = "Trop", font.legend = c(14, "bold"), legend = c(0.2,0.2),
ylab = "Adjusted survival rate",
xlab ="Follow-up in years", xlim=c(0,10),
ylim=c(0,1), font.y = c(14, "bold"),
font.x = c(14,"bold"), font.tickslab = c(12, "bold"), curv.size=3) --> no changes whatsoever, also different spelling

Thank you in advance, Max

JasonHwa881026 commented 6 years ago

I have exactly the same problem as yours

kassambara commented 6 years ago

New argument size added now.

Please use the argument size instead of curve.size, thanks.

JasonHwa881026 commented 6 years ago

Thanks for reply! Well, I still can not adjust the curve thickness after using argument size. Do I need to update survminer package?

kassambara commented 6 years ago

yes, you need to install the latest developmental version: devtools::install_github("kassambara/survminer")

JasonHwa881026 commented 6 years ago

thanks a lot! I have already changed the curve size. Thank you again very much! I mean it, because actually the curve size has beset me for about 10days. I really appreciated it!