Skip to content

Commit 19365d1

Browse files
committed
fix subtitle spacing
1 parent b1c1051 commit 19365d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

R/plot_model_profile_survival.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ plot2_mp <- function(x,
230230
if (!is.null(subtitle) && subtitle == "default") {
231231
subtitle <- paste0("created for the ", unique(variable), " variable")
232232
if (single_timepoint && !marginalize_over_time) {
233-
subtitle <- paste0(subtitle, " and time =", times)
233+
subtitle <- paste0(subtitle, " and time = ", times)
234234
}
235235
}
236236

R/plot_predict_profile_survival.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ plot2_cp <- function(x,
192192
if (!is.null(subtitle) && subtitle == "default") {
193193
subtitle <- paste0("created for the ", unique(variable), " variable")
194194
if (single_timepoint && !marginalize_over_time) {
195-
subtitle <- paste0(subtitle, " and time =", times)
195+
subtitle <- paste0(subtitle, " and time = ", times)
196196
}
197197
}
198198

0 commit comments

Comments
 (0)