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
Customising the plot part (with the Kaplan-Meier curves) is currently a pain, and requires adding arguments for any additional customisation option.
Maybe we could collapse everything into a single argument that is then added to the whole plot, something like:
KMunicate(fit = KM, time_scale = time_scale, .extra = ...)
...where .extra is then added to the plot (likely in here), with the following logic:
.extra
if (!is.null(.extra)) { plot <- plot + .extra }
This is worth pursuing, as it would greatly simplify codebase and give the user more flexibility.
The text was updated successfully, but these errors were encountered:
ellessenne
No branches or pull requests
Customising the plot part (with the Kaplan-Meier curves) is currently a pain, and requires adding arguments for any additional customisation option.
Maybe we could collapse everything into a single argument that is then added to the whole plot, something like:
...where
.extra
is then added to the plot (likely in here), with the following logic:This is worth pursuing, as it would greatly simplify codebase and give the user more flexibility.
The text was updated successfully, but these errors were encountered: